A transaction from RPC calls like search.

Try to keep this compatible to TxEvent

interface TxResponse {
    hash: Uint8Array;
    height: number;
    index: number;
    proof?: TxProof;
    result: TxData;
    tx: Uint8Array;
}

Properties

hash: Uint8Array
height: number
index: number
proof?: TxProof
result: TxData
tx: Uint8Array