Estimated cost for a fundCAddress transaction. All fee values are in stroops (1 XLM = 10_000_000 stroops).

interface CostEstimate {
    executionTimeMs: number;
    fee: string;
    minBalance: string;
    resourceFee: string;
}

Properties

executionTimeMs: number

Wall-clock time the simulation took, in milliseconds. Useful for UI feedback — if this is high, the RPC may be under load.

fee: string

Inclusion fee (base network fee) in stroops. This is the minimum fee required for the transaction to be included.

minBalance: string

Minimum account balance required to submit the transaction, in stroops. Accounts below this balance cannot submit transactions.

resourceFee: string

Soroban resource fee in stroops (covers CPU, memory, storage, I/O). This is on top of the inclusion fee.