ethers.js/src.ts/hash/index.ts

17 lines
593 B
TypeScript
Raw Normal View History

2022-11-28 05:53:31 +03:00
/**
* Utilities for common tasks involving hashing. Also see
* [cryptographic hashing](about-crypto-hashing).
2022-11-28 05:53:31 +03:00
*
2023-02-13 05:21:11 +03:00
* @_section: api/hashing:Hashing Utilities [about-hashing]
2022-11-28 05:53:31 +03:00
*/
2022-09-05 23:14:43 +03:00
export { id } from "./id.js"
export { ensNormalize, isValidName, namehash, dnsEncode } from "./namehash.js";
2023-01-15 15:54:49 +03:00
export { hashMessage, verifyMessage } from "./message.js";
2022-09-05 23:14:43 +03:00
export {
solidityPacked, solidityPackedKeccak256, solidityPackedSha256
} from "./solidity.js";
export { TypedDataEncoder, verifyTypedData } from "./typed-data.js";
2022-09-05 23:14:43 +03:00
export type { TypedDataDomain, TypedDataField } from "./typed-data.js";