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

    Interface ApiNftAmmWithdrawBody

    Inputs for building a transaction that withdraws an asset coin and selected NFTs from an NFT AMM market.

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

    LP-coin amount to burn, in the LP coin's smallest unit.

    marketObjectId: string

    On-chain object ID of the NFT AMM market.

    nftObjectIds: string[]

    On-chain IDs of the NFTs to withdraw.

    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 LP coin input.