@magiceden/magiceden-sdk
Version:
A TypeScript SDK for interacting with Magic Eden's API across multiple chains.
13 lines (12 loc) • 310 B
TypeScript
import { z } from 'zod';
import { Blockchain } from './general';
export declare const ChainAsset: z.ZodObject<{
chain: z.ZodNativeEnum<typeof Blockchain>;
assetId: z.ZodString;
}, "strip", z.ZodTypeAny, {
chain: Blockchain;
assetId: string;
}, {
chain: Blockchain;
assetId: string;
}>;