GetTxsEventResponse is the response type for the Service.TxsByEvents RPC method.

interface GetTxsEventResponseAmino {
    pagination?: PageResponseAmino;
    tx_responses?: TxResponseAmino[];
    txs?: TxAmino[];
}

Properties

pagination?: PageResponseAmino

pagination defines a pagination for the response.

tx_responses?: TxResponseAmino[]

tx_responses is the list of queried TxResponses.

txs?: TxAmino[]

txs is the list of queried transactions.