interface BlockResultsResponse {
    beginBlockEvents: readonly Event[];
    consensusUpdates?: ConsensusParams;
    endBlockEvents: readonly Event[];
    height: number;
    results: readonly TxData[];
    validatorUpdates: readonly ValidatorUpdate[];
}

Properties

beginBlockEvents: readonly Event[]
consensusUpdates?: ConsensusParams
endBlockEvents: readonly Event[]
height: number
results: readonly TxData[]
validatorUpdates: readonly ValidatorUpdate[]