@xoxno/sdk-js
    Preparing search index...

    Interface BuildStellarCctpForwardTxArgs

    interface BuildStellarCctpForwardTxArgs {
        attestation: string;
        caller: string;
        fee?: string;
        forwarderAddress: string;
        message: string;
        network: StellarNetwork;
        sourceSequence: string;
        timeoutSeconds?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attestation: string
    caller: string

    Transaction source and authorizing wallet public key (G...).

    fee?: string

    Default 10_000_000 stroops — CCTP mint_and_forward is resource-heavy.

    forwarderAddress: string
    message: string

    Must match the API deployment, RPC and signing wallet.

    sourceSequence: string

    Current sequence number of the caller account, as a decimal string. Callers fetch this from Soroban RPC (server.getAccount(caller)) before building. Keeping it as an input (rather than fetching inside the builder) makes builders sync-friendly, RPC-free, and deterministic for snapshot tests.

    timeoutSeconds?: number

    Default 120 seconds.