Snapshot handed to a ConfirmHook (and carried on FeeCapExceededError) after confirm but before broadcast.

interface TxConfirmInfo {
    feeDem: string;
    feeOs: bigint;
    referenceBlock: number;
    transaction: Transaction;
    validityData: RPCResponseWithValidityData;
    withinFeeCap: boolean;
}

Properties

feeDem: string

Total fee for this transaction, human-readable DEM string.

feeOs: bigint

Total fee for this transaction, in OS (smallest unit).

referenceBlock: number

Node reference block the tx was confirmed against.

transaction: Transaction

The signed, confirmed transaction.

Raw validity data from the node (gas operation, reference block, …).

withinFeeCap: boolean

Whether feeOs is within the configured maxFee ceiling.