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 EthCryptoPunksAssetTypeAtType: { readonly CryptoPunks: "CRYPTO_PUNKS"; }; export type EthCryptoPunksAssetTypeAtType = ClosedEnum; export type EthCryptoPunksAssetType = { atType: EthCryptoPunksAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; tokenId: number; }; /** @internal */ export declare const EthCryptoPunksAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthCryptoPunksAssetTypeAtType$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 EthCryptoPunksAssetTypeAtType$ { /** @deprecated use `EthCryptoPunksAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly CryptoPunks: "CRYPTO_PUNKS"; }>; /** @deprecated use `EthCryptoPunksAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly CryptoPunks: "CRYPTO_PUNKS"; }>; } /** @internal */ export declare const EthCryptoPunksAssetType$inboundSchema: z.ZodType; /** @internal */ export type EthCryptoPunksAssetType$Outbound = { "@type": string; contract: string; collection?: string | undefined; tokenId: number; }; /** @internal */ export declare const EthCryptoPunksAssetType$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 EthCryptoPunksAssetType$ { /** @deprecated use `EthCryptoPunksAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthCryptoPunksAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthCryptoPunksAssetType$Outbound` instead. */ type Outbound = EthCryptoPunksAssetType$Outbound; } export declare function ethCryptoPunksAssetTypeToJSON(ethCryptoPunksAssetType: EthCryptoPunksAssetType): string; export declare function ethCryptoPunksAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethcryptopunksassettype.d.ts.map