Interface TxResponse

interface TxResponse {
    code: number;
    codespace: string;
    data: string;
    events: any[];
    gas_used: string;
    gas_wanted: string;
    height: string;
    info: string;
    logs: any[];
    raw_log: string;
    timestamp: string;
    tx: any;
    txhash: string;
}

Hierarchy (view full)

Properties

code: number
codespace: string
data: string
events: any[]
gas_used: string
gas_wanted: string
height: string
info: string
logs: any[]
raw_log: string
timestamp: string
tx: any
txhash: string