6 lines
199 B
JavaScript
6 lines
199 B
JavaScript
import { keccak256 } from "../crypto/index.js";
|
|
import { toUtf8Bytes } from "../utils/index.js";
|
|
export function id(value) {
|
|
return keccak256(toUtf8Bytes(value));
|
|
}
|
|
//# sourceMappingURL=id.js.map
|