ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
734 B
18 lines
734 B
/** |
|
* Utilities for common tasks involving hashing. Also see |
|
* [cryptographic hashing](about-crypto-hashing). |
|
* |
|
* @_section: api/hashing:Hashing Utilities [about-hashing] |
|
*/ |
|
|
|
export { hashAuthorization, verifyAuthorization } from "./authorization.js"; |
|
export { id } from "./id.js" |
|
export { ensNormalize, isValidName, namehash, dnsEncode } from "./namehash.js"; |
|
export { hashMessage, verifyMessage } from "./message.js"; |
|
export { |
|
solidityPacked, solidityPackedKeccak256, solidityPackedSha256 |
|
} from "./solidity.js"; |
|
export { TypedDataEncoder, verifyTypedData } from "./typed-data.js"; |
|
|
|
export type { AuthorizationRequest } from "./authorization.js"; |
|
export type { TypedDataDomain, TypedDataField } from "./typed-data.js";
|
|
|