UNPKG

@magiceden/magiceden-sdk

Version:

A TypeScript SDK for interacting with Magic Eden's API across multiple chains.

22 lines (21 loc) 540 B
import { z } from 'zod'; export declare const Currency: z.ZodObject<{ symbol: z.ZodString; unit: z.ZodString; decimals: z.ZodNumber; displayName: z.ZodString; address: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { symbol: string; unit: string; decimals: number; displayName: string; address?: string | undefined; }, { symbol: string; unit: string; decimals: number; displayName: string; address?: string | undefined; }>; export type Currency = z.infer<typeof Currency>;