aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface ApiNftAmmSellBody

    Inputs for building a transaction that sells selected NFTs to an NFT AMM market.

    interface ApiNftAmmSellBody {
        marketObjectId: string;
        nftObjectIds: string[];
        referrer?: string;
        slippage: number;
        walletAddress: string;
    }
    Index
    marketObjectId: string

    On-chain object ID of the NFT AMM market.

    nftObjectIds: string[]

    On-chain IDs of the NFTs to sell into the market.

    referrer?: string

    Optional referral address used for referral-aware quote calculations.

    slippage: number

    Decimal slippage tolerance, where 0.01 means 1%.

    walletAddress: string

    Transaction sender and wallet that owns the NFTs.