2022-11-28 05:53:31 +03:00
|
|
|
/**
|
|
|
|
* About hashing here...
|
|
|
|
*
|
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"
|
2023-01-28 09:49:58 +03:00
|
|
|
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";
|
2023-03-20 18:31:35 +03:00
|
|
|
export { TypedDataEncoder, verifyTypedData } from "./typed-data.js";
|
2022-09-05 23:14:43 +03:00
|
|
|
|
|
|
|
export type { TypedDataDomain, TypedDataField } from "./typed-data.js";
|