T402 API Reference - v2.8.0
    Preparing search index...

    Interface BridgeExecuteParams

    Parameters for executing a bridge transaction

    interface BridgeExecuteParams {
        fromChain: string;
        toChain: string;
        amount: bigint;
        recipient: `0x${string}`;
        slippageTolerance?: number;
        dstGasLimit?: bigint;
        refundAddress?: `0x${string}`;
    }

    Hierarchy (View Summary)

    Index

    Properties

    fromChain: string

    Source chain name (e.g., "ethereum", "arbitrum")

    toChain: string

    Destination chain name

    amount: bigint

    Amount to bridge in token units (6 decimals for USDT0)

    recipient: `0x${string}`

    Recipient address on destination chain

    slippageTolerance?: number

    Slippage tolerance as percentage (e.g., 0.5 for 0.5%)

    dstGasLimit?: bigint

    Custom gas limit for the destination chain execution

    refundAddress?: `0x${string}`

    Refund address for excess fees (defaults to sender)