index.d.ts 623 B

12345678910111213
  1. /**
  2. * Utilities for common tasks involving hashing. Also see
  3. * [cryptographic hashing](about-crypto-hashing).
  4. *
  5. * @_section: api/hashing:Hashing Utilities [about-hashing]
  6. */
  7. export { id } from "./id.js";
  8. export { ensNormalize, isValidName, namehash, dnsEncode } from "./namehash.js";
  9. export { hashMessage, verifyMessage } from "./message.js";
  10. export { solidityPacked, solidityPackedKeccak256, solidityPackedSha256 } from "./solidity.js";
  11. export { TypedDataEncoder, verifyTypedData } from "./typed-data.js";
  12. export type { TypedDataDomain, TypedDataField } from "./typed-data.js";
  13. //# sourceMappingURL=index.d.ts.map