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

Since: cosmos-sdk 0.45.2

interface GetBlockWithTxsResponse {
    block?: Block;
    blockId?: BlockID;
    pagination?: PageResponse;
    txs: Tx[];
}

Properties

block?: Block
blockId?: BlockID
pagination?: PageResponse

pagination defines a pagination for the response.

txs: Tx[]

txs are the transactions in the block.