ethers.js/src.ts/hash/index.ts
2023-01-15 07:54:49 -05:00

16 lines
472 B
TypeScript

/**
* About hashing here...
*
* @_section: api/hashing:Hashing Utilities [hashing]
*/
export { id } from "./id.js"
export { isValidName, namehash, dnsEncode } from "./namehash.js";
export { hashMessage, verifyMessage } from "./message.js";
export {
solidityPacked, solidityPackedKeccak256, solidityPackedSha256
} from "./solidity.js";
export { TypedDataEncoder } from "./typed-data.js";
export type { TypedDataDomain, TypedDataField } from "./typed-data.js";