interface BroadcastTxCommitResponse {
    checkTx: TxData;
    deliverTx?: TxData;
    hash: Uint8Array;
    height: number;
    txResult?: TxData;
}

Properties

checkTx: TxData
deliverTx?: TxData

use txResult. Containes the same data as txResult for now

hash: Uint8Array
height: number
txResult?: TxData