ethers.js/lib.esm/hash/id.js
2022-09-15 22:58:45 -04:00

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