ConsensusState defines the consensus state from Tendermint.

interface ConsensusState {
    nextValidatorsHash: Uint8Array;
    root: undefined | MerkleRoot;
    timestamp: undefined | Date;
}

Properties

nextValidatorsHash: Uint8Array
root: undefined | MerkleRoot

commitment root (i.e app hash)

timestamp: undefined | Date

timestamp that corresponds to the block height in which the ConsensusState was stored.