id.ts 195 B

123456
  1. import { keccak256 } from "@ethersproject/keccak256";
  2. import { toUtf8Bytes } from "@ethersproject/strings";
  3. export function id(text: string): string {
  4. return keccak256(toUtf8Bytes(text));
  5. }