ConsensusState defines the consensus state from Tendermint.

interface ConsensusStateAmino {
    next_validators_hash?: string;
    root?: MerkleRootAmino;
    timestamp?: string;
}

Properties

next_validators_hash?: string

commitment root (i.e app hash)

timestamp?: string

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