/** * @import { BytesLike } from "@helios-lang/codec-utils" * @import { TxMetadata, TxMetadataAttr } from "../index.js" */ /** * * @param {BytesLike} bytes * @returns {TxMetadata} */ export function decodeTxMetadata(bytes: BytesLike): TxMetadata; /** * @param {{[key: number]: TxMetadataAttr}} attributes * @returns {TxMetadata} */ export function makeTxMetadata(attributes: { [key: number]: TxMetadataAttr; }): TxMetadata; import type { BytesLike } from "@helios-lang/codec-utils"; import type { TxMetadata } from "../index.js"; import type { TxMetadataAttr } from "../index.js"; //# sourceMappingURL=TxMetadata.d.ts.map