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

    Interface CrossChainPaymentParams

    Parameters for cross-chain payment routing

    interface CrossChainPaymentParams {
        sourceChain: string;
        destinationChain: string;
        amount: bigint;
        payTo: `0x${string}`;
        payer: `0x${string}`;
        slippageTolerance?: number;
    }
    Index

    Properties

    sourceChain: string

    Source chain where user has funds

    destinationChain: string

    Destination chain where payment is needed

    amount: bigint

    Amount to transfer (in token units, 6 decimals for USDT0)

    payTo: `0x${string}`

    Payment recipient on destination chain

    payer: `0x${string}`

    Payer address (receives bridged funds on destination)

    slippageTolerance?: number

    Slippage tolerance percentage (default: 0.5)