mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 05:44:06 -06:00
6 lines
208 B
JavaScript
6 lines
208 B
JavaScript
import { keccak256 } from "@ethersproject/keccak256";
|
|
import { toUtf8Bytes } from "@ethersproject/strings";
|
|
export function id(text) {
|
|
return keccak256(toUtf8Bytes(text));
|
|
}
|
|
//# sourceMappingURL=id.js.map
|