GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs method.

Since: cosmos-sdk 0.45.2

interface GetBlockWithTxsResponseAmino {
    block?: BlockAmino;
    block_id?: BlockIDAmino;
    pagination?: PageResponseAmino;
    txs?: TxAmino[];
}

Properties

block?: BlockAmino
block_id?: BlockIDAmino
pagination?: PageResponseAmino

pagination defines a pagination for the response.

txs?: TxAmino[]

txs are the transactions in the block.