/** * @import { BytesLike, IntLike } from "@helios-lang/codec-utils" * @import { JsonSafe } from "@helios-lang/type-utils" * @import { MapData } from "@helios-lang/uplc" * @import { AssetClass, AssetClassLike, Assets, AssetsLike, MintingPolicyHash, MintingPolicyHashLike, TokensLike } from "../index.js" */ /** * **Note**: the assets are normalized by removing entries with 0 tokens, and merging all entries with the same MintingPolicyHash and token name. * @param {AssetsLike} arg * @returns {Assets} */ export function makeAssets(arg?: AssetsLike): Assets; /** * @param {BytesLike} bytes * @returns {Assets} */ export function decodeAssets(bytes: BytesLike): Assets; import type { AssetsLike } from "../index.js"; import type { Assets } from "../index.js"; import type { BytesLike } from "@helios-lang/codec-utils"; //# sourceMappingURL=Assets.d.ts.map