interface Payment {
    amount: string;
    collection: string;
    decimals?: number;
    nonce: number;
}

Hierarchy

  • Omit<NFTBody, "amount">
    • Payment

Properties

amount: string
collection: string
decimals?: number
nonce: number