import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const EthErc1155AssetTypeAtType: { readonly Erc1155: "ERC1155"; }; export type EthErc1155AssetTypeAtType = ClosedEnum; export type EthErc1155AssetType = { atType: EthErc1155AssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; tokenId: string; }; /** @internal */ export declare const EthErc1155AssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthErc1155AssetTypeAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EthErc1155AssetTypeAtType$ { /** @deprecated use `EthErc1155AssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Erc1155: "ERC1155"; }>; /** @deprecated use `EthErc1155AssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Erc1155: "ERC1155"; }>; } /** @internal */ export declare const EthErc1155AssetType$inboundSchema: z.ZodType; /** @internal */ export type EthErc1155AssetType$Outbound = { "@type": string; contract: string; collection?: string | undefined; tokenId: string; }; /** @internal */ export declare const EthErc1155AssetType$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EthErc1155AssetType$ { /** @deprecated use `EthErc1155AssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthErc1155AssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthErc1155AssetType$Outbound` instead. */ type Outbound = EthErc1155AssetType$Outbound; } export declare function ethErc1155AssetTypeToJSON(ethErc1155AssetType: EthErc1155AssetType): string; export declare function ethErc1155AssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=etherc1155assettype.d.ts.map