interface AbciQueryResponse {
    code?: number;
    codespace: string;
    height?: number;
    index?: number;
    info: string;
    key: Uint8Array;
    log?: string;
    proof?: QueryProof;
    value: Uint8Array;
}

Properties

code?: number
codespace: string
height?: number
index?: number
info: string
key: Uint8Array
log?: string
proof?: QueryProof
value: Uint8Array