Skip to main content

Data Structures

Here we describe the data structures in the CometBFT blockchain and the rules for validating them. The CometBFT blockchain consists of a short list of data types:

Block

A block consists of a header, transactions, votes (the commit), and a list of evidence of malfeasance (ie. signing conflicting votes).
NameTypeDescriptionValidation
HeaderHeaderHeader corresponding to the block. This field contains information used throughout consensus and other areas of the protocol. To find out what it contains, visit headerMust adhere to the validation rules of header
DataDataData contains a list of transactions. The contents of the transaction is unknown to CometBFT.This field can be empty or populated, but no validation is performed. Applications can perform validation on individual transactions prior to block creation using checkTx.
EvidenceEvidenceListEvidence contains a list of infractions committed by validators.Can be empty, but when populated the validations rules from evidenceList apply
LastCommitCommitLastCommit includes one vote for every validator. All votes must either be for the previous block, nil or absent. If a vote is for the previous block it must have a valid signature from the corresponding validator. The sum of the voting power of the validators that voted must be greater than 2/3 of the total voting power of the complete validator set. The number of votes in a commit is limited to 10000 (see types.MaxVotesCount).Must be empty for the initial height and must adhere to the validation rules of commit.

Execution

Once a block is validated, it can be executed against the state. The state follows this recursive equation:
state(initialHeight) = InitialState
state(h+1) <- Execute(state(h), ABCIApp, block(h))
where InitialState includes the initial consensus parameters and validator set, and ABCIApp is an ABCI application that can return results and changes to the validator set (TODO). Execute is defined as:
func Execute(state State, app ABCIApp, block Block) State {
 // Fuction ApplyBlock executes block of transactions against the app and returns the new root hash of the app state,
 // modifications to the validator set and the changes of the consensus parameters.
 AppHash, ValidatorChanges, ConsensusParamChanges := app.ApplyBlock(block)

 nextConsensusParams := UpdateConsensusParams(state.ConsensusParams, ConsensusParamChanges)
 return State{
  ChainID:         state.ChainID,
  InitialHeight:   state.InitialHeight,
  LastResults:     abciResponses.DeliverTxResults,
  AppHash:         AppHash,
  LastValidators:  state.Validators,
  Validators:      state.NextValidators,
  NextValidators:  UpdateValidators(state.NextValidators, ValidatorChanges),
  ConsensusParams: nextConsensusParams,
  Version: {
   Consensus: {
    AppVersion: nextConsensusParams.Version.AppVersion,
   },
  },
 }
}
Validating a new block is first done prior to the prevote, precommit & finalizeCommit stages. The steps to validate a new block are:
  • Check the validity rules of the block and its fields.
  • Check the versions (Block & App) are the same as in local state.
  • Check the chainID’s match.
  • Check the height is correct.
  • Check the LastBlockID corresponds to BlockID currently in state.
  • Check the hashes in the header match those in state.
  • Verify the LastCommit against state, this step is skipped for the initial height.
    • This is where checking the signatures correspond to the correct block will be made.
  • Make sure the proposer is part of the validator set.
  • Validate bock time.
    • Make sure the new blocks time is after the previous blocks time.
    • Calculate the medianTime and check it against the blocks time.
    • If the blocks height is the initial height then check if it matches the genesis time.
  • Validate the evidence in the block. Note: Evidence can be empty
A block header contains metadata about the block and about the consensus, as well as commitments to the data in the current block, the previous block, and the results returned by the application:
NameTypeDescriptionValidation
VersionVersionVersion defines the application and block versions being used.Must adhere to the validation rules of Version
ChainIDStringChainID is the ID of the chain. This must be unique to your chain.ChainID must be less than 50 bytes.
Heightuint64Height is the height for this header.Must be > 0, >= initialHeight, and == previous Height+1
TimeTimeThe timestamp is equal to the weighted median of validators present in the last commit. Read more on time in the BFT-time section. Note: the timestamp of a vote must be greater by at least one millisecond than that of the block being voted on.Time must be >= previous header timestamp + consensus parameters TimeIotaMs. The timestamp of the first block must be equal to the genesis time (since there’s no votes to compute the median).
LastBlockIDBlockIDBlockID of the previous block.Must adhere to the validation rules of blockID. The first block has block.Header.LastBlockID == BlockID{}.
LastCommitHashslice of bytes ([]byte)MerkleRoot of the lastCommit’s signatures. The signatures represent the validators that committed to the last block. The first block has an empty slices of bytes for the hash.Must be of length 32
DataHashslice of bytes ([]byte)MerkleRoot of the hash of transactions. Note: The transactions are hashed before being included in the merkle tree, the leaves of the Merkle tree are the hashes, not the transactions themselves.Must be of length 32
ValidatorHashslice of bytes ([]byte)MerkleRoot of the current validator set. The validators are first sorted by voting power (descending), then by address (ascending) prior to computing the MerkleRoot.Must be of length 32
NextValidatorHashslice of bytes ([]byte)MerkleRoot of the next validator set. The validators are first sorted by voting power (descending), then by address (ascending) prior to computing the MerkleRoot.Must be of length 32
ConsensusHashslice of bytes ([]byte)Hash of the protobuf encoded consensus parameters.Must be of length 32
AppHashslice of bytes ([]byte)Arbitrary byte array returned by the application after executing and commiting the previous block. It serves as the basis for validating any merkle proofs that comes from the ABCI application and represents the state of the actual application rather than the state of the blockchain itself. The first block’s block.Header.AppHash is given by ResponseInitChain.app_hash.This hash is determined by the application, CometBFT can not perform validation on it.
LastResultHashslice of bytes ([]byte)LastResultsHash is the root hash of a Merkle tree built from ResponseDeliverTx responses (Log,Info, Codespace and Events fields are ignored).Must be of length 32. The first block has block.Header.ResultsHash == MerkleRoot(nil), i.e. the hash of an empty input, for RFC-6962 conformance.
EvidenceHashslice of bytes ([]byte)MerkleRoot of the evidence of Byzantine behavior included in this block.Must be of length 32
ProposerAddressslice of bytes ([]byte)Address of the original proposer of the block. Validator must be in the current validatorSet.Must be of length 20

Version

NOTE: that this is more specifically the consensus version and doesn’t include information like the P2P Version. (TODO: we should write a comprehensive document about versioning that this can refer to)
NametypeDescriptionValidation
Blockuint64This number represents the block version and must be the same throughout an operational networkMust be equal to block version being used in a network (block.Version.Block == state.Version.Consensus.Block)
Appuint64App version is decided on by the application. Read hereblock.Version.App == state.Version.Consensus.App

BlockID

The BlockID contains two distinct Merkle roots of the block. The BlockID includes these two hashes, as well as the number of parts (ie. len(MakeParts(block)))
NameTypeDescriptionValidation
Hashslice of bytes ([]byte)MerkleRoot of all the fields in the header (ie. MerkleRoot(header).hash must be of length 32
PartSetHeaderPartSetHeaderUsed for secure gossiping of the block during consensus, is the MerkleRoot of the complete serialized block cut into parts (ie. MerkleRoot(MakeParts(block))).Must adhere to the validation rules of PartSetHeader
See MerkleRoot for details.

PartSetHeader

NameTypeDescriptionValidation
Totalint32Total amount of parts for a blockMust be > 0
Hashslice of bytes ([]byte)MerkleRoot of a serialized blockMust be of length 32

Part

Part defines a part of a block. In CometBFT blocks are broken into parts for gossip.
NameTypeDescriptionValidation
indexint32Total amount of parts for a blockMust be > 0
bytesbytesMerkleRoot of a serialized blockMust be of length 32
proofProofMerkleRoot of a serialized blockMust be of length 32

Time

CometBFT uses the Google.Protobuf.Timestamp format, which uses two integers, one 64 bit integer for Seconds and a 32 bit integer for Nanoseconds.

Data

Data is just a wrapper for a list of transactions, where transactions are arbitrary byte arrays:
NameTypeDescriptionValidation
TxsMatrix of bytes ([][]byte)Slice of transactions.Validation does not occur on this field, this data is unknown to CometBFT

Commit

Commit is a simple wrapper for a list of signatures, with one for each validator. It also contains the relevant BlockID, height and round:
NameTypeDescriptionValidation
Heightint64Height at which this commit was created.Must be > 0
Roundint32Round that the commit corresponds to.Must be > 0
BlockIDBlockIDThe blockID of the corresponding block.Must adhere to the validation rules of BlockID.
SignaturesArray of CommitSigArray of commit signatures that correspond to current validator set.Length of signatures must be > 0 and adhere to the validation of each individual Commitsig

ExtendedCommit

ExtendedCommit, similarly to Commit, wraps a list of votes with signatures together with other data needed to verify them. In addition, it contains the verified vote extensions, one for each non-nil vote, along with the extension signatures.
NameTypeDescriptionValidation
Heightint64Height at which this commit was created.Must be > 0
Roundint32Round that the commit corresponds to.Must be > 0
BlockIDBlockIDThe blockID of the corresponding block.Must adhere to the validation rules of BlockID.
ExtendedSignaturesArray of ExtendedCommitSigThe current validator set’s commit signatures, extension, and extension signatures.Length of signatures must be > 0 and adhere to the validation of each individual ExtendedCommitSig

CommitSig

CommitSig represents a signature of a validator, who has voted either for nil, a particular BlockID or was absent. It’s a part of the Commit and can be used to reconstruct the vote set given the validator set.
NameTypeDescriptionValidation
BlockIDFlagBlockIDFlagRepresents the validators participation in consensus: its vote was not received, voted for the block that received the majority, or voted for nilMust be one of the fields in the BlockIDFlag enum
ValidatorAddressAddressAddress of the validatorMust be of length 20
TimestampTimeThis field will vary from CommitSig to CommitSig. It represents the timestamp of the validator.Time
SignatureSignatureSignature corresponding to the validators participation in consensus.The length of the signature must be > 0 and < than 64
NOTE: ValidatorAddress and Timestamp fields may be removed in the future (see ADR-25).

ExtendedCommitSig

ExtendedCommitSig represents a signature of a validator that has voted either for nil, a particular BlockID or was absent. It is part of the ExtendedCommit and can be used to reconstruct the vote set given the validator set. Additionally it contains the vote extensions that were attached to each non-nil precommit vote. All these extensions have been verified by the application operating at the signing validator’s node.
NameTypeDescriptionValidation
BlockIDFlagBlockIDFlagRepresents the validators participation in consensus: its vote was not received, voted for the block that received the majority, or voted for nilMust be one of the fields in the BlockIDFlag enum
ValidatorAddressAddressAddress of the validatorMust be of length 20
TimestampTimeThis field will vary from CommitSig to CommitSig. It represents the timestamp of the validator.
SignatureSignatureSignature corresponding to the validators participation in consensus.Length must be > 0 and < 64
ExtensionbytesVote extension provided by the Application running on the sender of the precommit vote, and verified by the local application.Length must be zero if BlockIDFlag is not Commit
ExtensionSignatureSignatureSignature of the vote extension.Length must be > 0 and < than 64 if BlockIDFlag is Commit, else 0

BlockIDFlag

BlockIDFlag represents which BlockID the signature is for.
enum BlockIDFlag {
  BLOCK_ID_FLAG_UNKNOWN = 0; // indicates an error condition
  BLOCK_ID_FLAG_ABSENT  = 1; // the vote was not received
  BLOCK_ID_FLAG_COMMIT  = 2; // voted for the block that received the majority
  BLOCK_ID_FLAG_NIL     = 3; // voted for nil
}

Vote

A vote is a signed message from a validator for a particular block. The vote includes information about the validator signing it. When stored in the blockchain or propagated over the network, votes are encoded in Protobuf.
NameTypeDescriptionValidation
TypeSignedMsgTypeThe type of message the vote refers toMust be PrevoteType or PrecommitType
Heightint64Height for which this vote was created forMust be > 0
Roundint32Round that the commit corresponds to.Must be > 0
BlockIDBlockIDThe blockID of the corresponding block.
TimestampTimeTimestamp represents the time at which a validator signed.
ValidatorAddressbytesAddress of the validatorLength must be equal to 20
ValidatorIndexint32Index at a specific block height corresponding to the Index of the validator in the set.Must be > 0
SignaturebytesSignature by the validator if they participated in consensus for the associated block.Length must be > 0 and < 64
ExtensionbytesVote extension provided by the Application running at the validator’s node.Length can be 0
ExtensionSignaturebytesSignature for the extensionLength must be > 0 and < 64

CanonicalVote

CanonicalVote is for validator signing. This type will not be present in a block. Votes are represented via CanonicalVote and also encoded using protobuf via type.SignBytes which includes the ChainID, and uses a different ordering of the fields.
NameTypeDescriptionValidation
TypeSignedMsgTypeThe type of message the vote refers toMust be PrevoteType or PrecommitType
Heightint64Height in which the vote was provided.Must be > 0
Roundint64Round in which the vote was provided.Must be > 0
BlockIDstringID of the block the vote refers to.
TimestampstringTime of the vote.
ChainIDstringID of the blockchain running consensus.
For signing, votes are represented via CanonicalVote and also encoded using protobuf via type.SignBytes which includes the ChainID, and uses a different ordering of the fields. We define a method Verify that returns true if the signature verifies against the pubkey for the SignBytes using the given ChainID:
func (vote *Vote) Verify(chainID string, pubKey crypto.PubKey) error {
 if !bytes.Equal(pubKey.Address(), vote.ValidatorAddress) {
  return ErrVoteInvalidValidatorAddress
 }
 v := vote.ToProto()
 if !pubKey.VerifyBytes(types.VoteSignBytes(chainID, v), vote.Signature) {
  return ErrVoteInvalidSignature
 }
 return nil
}

CanonicalVoteExtension

Vote extensions are signed using a representation similar to votes. This is the structure to marshall in order to obtain the bytes to sign or verify the signature.
NameTypeDescriptionValidation
ExtensionbytesVote extension provided by the Application.Can have zero length
Heightint64Height in which the extension was provided.Must be > 0
Roundint64Round in which the extension was provided.Must be > 0
ChainIDstringID of the blockchain running consensus.

Proposal

Proposal contains height and round for which this proposal is made, BlockID as a unique identifier of proposed block, timestamp, and POLRound (a so-called Proof-of-Lock (POL) round) that is needed for termination of the consensus. If POLRound >= 0, then BlockID corresponds to the block that is locked in POLRound. The message is signed by the validator private key.
NameTypeDescriptionValidation
TypeSignedMsgTypeRepresents a Proposal SignedMsgTypeMust be ProposalType signedMsgType
Heightuint64Height for which this vote was created forMust be > 0
Roundint32Round that the commit corresponds to.Must be > 0
POLRoundint64Proof of lockMust be > 0
BlockIDBlockIDThe blockID of the corresponding block.BlockID
TimestampTimeTimestamp represents the time at which a validator signed.Time
Signatureslice of bytes ([]byte)Signature by the validator if they participated in consensus for the associated bock.Length of signature must be > 0 and < 64

SignedMsgType

Signed message type represents a signed messages in consensus.
enum SignedMsgType {

  SIGNED_MSG_TYPE_UNKNOWN = 0;
  // Votes
  SIGNED_MSG_TYPE_PREVOTE   = 1;
  SIGNED_MSG_TYPE_PRECOMMIT = 2;

  // Proposal
  SIGNED_MSG_TYPE_PROPOSAL = 32;
}

Signature

Signatures in CometBFT are raw bytes representing the underlying signature. See the signature spec for more.

EvidenceList

EvidenceList is a simple wrapper for a list of evidence:
NameTypeDescriptionValidation
EvidenceArray of EvidenceList of verified evidenceValidation adheres to individual types of Evidence

Evidence

Evidence in CometBFT is used to indicate breaches in the consensus by a validator. More information on how evidence works in CometBFT can be found here

DuplicateVoteEvidence

DuplicateVoteEvidence represents a validator that has voted for two different blocks in the same round of the same height. Votes are lexicographically sorted on BlockID.
NameTypeDescriptionValidation
VoteAVoteOne of the votes submitted by a validator when they equivocatedVoteA must adhere to Vote validation rules
VoteBVoteThe second vote submitted by a validator when they equivocatedVoteB must adhere to Vote validation rules
TotalVotingPowerint64The total power of the validator set at the height of equivocationMust be equal to nodes own copy of the data
ValidatorPowerint64Power of the equivocating validator at the heightMust be equal to the nodes own copy of the data
TimestampTimeTime of the block where the equivocation occurredMust be equal to the nodes own copy of the data

LightClientAttackEvidence

LightClientAttackEvidence is a generalized evidence that captures all forms of known attacks on a light client such that a full node can verify, propose and commit the evidence on-chain for punishment of the malicious validators. There are three forms of attacks: Lunatic, Equivocation and Amnesia. These attacks are exhaustive. You can find a more detailed overview of this here
NameTypeDescriptionValidation
ConflictingBlockLightBlockRead BelowMust adhere to the validation rules of lightBlock
CommonHeightint64Read Belowmust be > 0
Byzantine ValidatorsArray of Validatorsvalidators that acted maliciouslyRead Below
TotalVotingPowerint64The total power of the validator set at the height of the infractionMust be equal to the nodes own copy of the data
TimestampTimeTime of the block where the infraction occurredMust be equal to the nodes own copy of the data

LightBlock

LightBlock is the core data structure of the light client. It combines two data structures needed for verification (signedHeader & validatorSet).
NameTypeDescriptionValidation
SignedHeaderSignedHeaderThe header and commit, these are used for verification purposes. To find out more visit light client docsMust not be nil and adhere to the validation rules of signedHeader
ValidatorSetValidatorSetThe validatorSet is used to help with verify that the validators in that committed the infraction were truly in the validator set.Must not be nil and adhere to the validation rules of validatorSet
The SignedHeader and ValidatorSet are linked by the hash of the validator set(SignedHeader.ValidatorsHash == ValidatorSet.Hash().

SignedHeader

The SignedhHeader is the header accompanied by the commit to prove it.
NameTypeDescriptionValidation
HeaderHeaderHeaderHeader cannot be nil and must adhere to the Header validation criteria
CommitCommitCommitCommit cannot be nil and must adhere to the Commit criteria

ValidatorSet

NameTypeDescriptionValidation
ValidatorsArray of validatorList of the active validators at a specific heightThe list of validators can not be empty or nil and must adhere to the validation rules of validator
ProposervalidatorThe block proposer for the corresponding blockThe proposer cannot be nil and must adhere to the validation rules of validator

Validator

NameTypeDescriptionValidation
AddressAddressValidators AddressLength must be of size 20
Pubkeyslice of bytes ([]byte)Validators Public Keymust be a length greater than 0
VotingPowerint64Validators voting powercannot be < 0
ProposerPriorityint64Validators proposer priority. This is used to gauge when a validator is up next to propose blocksNo validation, value can be negative and positive

Address

Address is a type alias of a slice of bytes. The address is calculated by hashing the public key using sha256 and truncating it to only use the first 20 bytes of the slice.
const (
  TruncatedSize = 20
)

func SumTruncated(bz []byte) []byte {
  hash := sha256.Sum256(bz)
  return hash[:TruncatedSize]
}

ConsensusParams

NameTypeDescriptionField Number
blockBlockParamsParameters limiting the size of a block and time between consecutive blocks.1
evidenceEvidenceParamsParameters limiting the validity of evidence of byzantine behavior.2
validatorValidatorParamsParameters limiting the types of public keys validators can use.3
versionBlockParamsThe ABCI application version.4

BlockParams

NameTypeDescriptionField Number
max_bytesint64Max size of a block, in bytes.1
max_gasint64Max sum of GasWanted in a proposed block. NOTE: blocks that violate this may be committed if there are Byzantine proposers. It’s the application’s responsibility to handle this when processing a block!2

EvidenceParams

NameTypeDescriptionField Number
max_age_num_blocksint64Max age of evidence, in blocks.1
max_age_durationgoogle.protobuf.DurationMax age of evidence, in time. It should correspond with an app’s “unbonding period” or other similar mechanism for handling Nothing-At-Stake attacks.2
max_bytesint64maximum size in bytes of total evidence allowed to be entered into a block3

ValidatorParams

NameTypeDescriptionField Number
pub_key_typesrepeated stringList of accepted public key types. Uses same naming as PubKey.Type.1

VersionParams

NameTypeDescriptionField Number
app_versionuint64The ABCI application version.1

Proof

NameTypeDescriptionField Number
totalint64Total number of items.1
indexint64Index item to prove.2
leaf_hashbytesHash of item value.3
auntsrepeated bytesHashes from leaf’s sibling to a root’s child.4