UNPKG

@magiceden/magiceden-sdk

Version:

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

10 lines (9 loc) 331 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ChainAsset = void 0; const zod_1 = require("zod"); const general_1 = require("./general"); exports.ChainAsset = zod_1.z.object({ chain: zod_1.z.nativeEnum(general_1.Blockchain), assetId: zod_1.z.string().describe('Asset identifier'), });