TxResponse defines a structure containing relevant tx data and metadata. The tags are stringified and the log is JSON decoded.

interface TxResponseSDKType {
    code: number;
    codespace: string;
    data: string;
    events: EventSDKType[];
    gas_used: bigint;
    gas_wanted: bigint;
    height: bigint;
    info: string;
    logs: ABCIMessageLogSDKType[];
    raw_log: string;
    timestamp: string;
    tx?: AnySDKType;
    txhash: string;
}

Properties

code: number
codespace: string
data: string
events: EventSDKType[]
gas_used: bigint
gas_wanted: bigint
height: bigint
info: string
raw_log: string
timestamp: string
txhash: string