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

interface GetTxsEventResponse {
    pagination?: PageResponse;
    txResponses: TxResponse[];
    txs: Tx[];
}

Properties

pagination?: PageResponse

pagination defines a pagination for the response.

txResponses: TxResponse[]

tx_responses is the list of queried TxResponses.

txs: Tx[]

txs is the list of queried transactions.