UNPKG

@magiceden/magiceden-sdk

Version:

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

11 lines (10 loc) 273 B
import { EvmChainId } from '../chains/evm'; export interface PaymentTokenWithoutChain { address: `0x${string}`; symbol: string; decimals: number; name: string; } export interface EvmPaymentToken extends PaymentTokenWithoutChain { chainId: EvmChainId; }