TxResult contains results of executing the transaction.

One usage is indexing transaction results.

interface TxResult {
    height: bigint;
    index: number;
    result: undefined | ResponseDeliverTx;
    tx: Uint8Array;
}

Properties

Properties

height: bigint
index: number
result: undefined | ResponseDeliverTx
tx: Uint8Array