hoodchain - v0.1.0
    Preparing search index...

    Interface SwapTxOptions

    Options for buildSwapTx / executeSwap.

    interface SwapTxOptions {
        deadlineSeconds?: number;
        recipient?: `0x${string}`;
        slippageBps?: number;
    }
    Index
    deadlineSeconds?: number

    Seconds until the swap transaction expires.

    600 (10 minutes)

    recipient?: `0x${string}`

    Recipient of the output tokens. Defaults to the client's account.

    slippageBps?: number

    Slippage tolerance in basis points applied to the quoted output.

    50 (0.5%)