You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { keccak256 } from "@ethersproject/keccak256";
|
|
import { toUtf8Bytes } from "@ethersproject/strings";
|
|
export function id(text) {
|
|
return keccak256(toUtf8Bytes(text));
|
|
}
|
|
//# sourceMappingURL=id.js.map
|