diff --git a/src.ts/hash/index.ts b/src.ts/hash/index.ts index 6452a4940..22528cb18 100644 --- a/src.ts/hash/index.ts +++ b/src.ts/hash/index.ts @@ -1,3 +1,8 @@ +/** + * About hashing here... + * + * @_section: api/hashing:Hashing Utilities [hashing] + */ export { id } from "./id.js" export { isValidName, namehash, dnsEncode } from "./namehash.js"; diff --git a/src.ts/hash/solidity.ts b/src.ts/hash/solidity.ts index 2967300e0..ab699ade1 100644 --- a/src.ts/hash/solidity.ts +++ b/src.ts/hash/solidity.ts @@ -86,10 +86,9 @@ export function solidityPacked(types: ReadonlyArray, values: ReadonlyArr * @param {Array} types - The Solidity types to interpret each value as [default: bar] * @param {Array} values - The values to pack * - * @returns: {HexString} the hexstring of the hash * @example: * solidityPackedKeccak256([ "address", "uint" ], [ "0x1234", 45 ]); - * //_result: + * / /_result: * * @see https://docs.soliditylang.org/en/v0.8.14/abi-spec.html#non-standard-packed-mode */