Core Protocol

Tendermint Consensus

BFT consensus protocol using two-phase voting (prevote + precommit) with a 2/3 supermajority threshold. Unlike Tower BFT which votes on a continuously growing PoH chain, Tendermint uses round-based block proposals. Tower BFT achieves lower latency by avoiding per-round communication overhead, leveraging PoH as a shared clock instead.

IDtendermint-consensusAliasCometBFT

Plain meaning

Start with the shortest useful explanation before going deeper.

BFT consensus protocol using two-phase voting (prevote + precommit) with a 2/3 supermajority threshold. Unlike Tower BFT which votes on a continuously growing PoH chain, Tendermint uses round-based block proposals. Tower BFT achieves lower latency by avoiding per-round communication overhead, leveraging PoH as a shared clock instead.

Mental model

Use the quick analogy first so the term is easier to reason about when you meet it in code, docs, or prompts.

Think of it as part of the chain machinery that keeps ordering, execution, or consensus moving.

Technical context

Place the term inside its Solana layer so the definition is easier to reason about.

Consensus, leader rotation, slots, epochs, and the runtime.

Why builders care

Turn the term from vocabulary into something operational for product and engineering work.

This term unlocks adjacent concepts quickly, so it works best when you treat it as a junction instead of an isolated definition.

AI handoff

AI handoff

Use this compact block when you want to give an agent or assistant grounded context without dumping the entire page.

Tendermint Consensus (tendermint-consensus)
Category: Core Protocol
Definition: BFT consensus protocol using two-phase voting (prevote + precommit) with a 2/3 supermajority threshold. Unlike Tower BFT which votes on a continuously growing PoH chain, Tendermint uses round-based block proposals. Tower BFT achieves lower latency by avoiding per-round communication overhead, leveraging PoH as a shared clock instead.
Aliases: CometBFT
Related: Consensus Mechanism, Tower BFT, Supermajority, Byzantine Fault Tolerance (BFT)
Glossary Copilot

Ask grounded Solana questions without leaving the glossary.

Use glossary context, relationships, mental models, and builder paths to get structured answers instead of generic chat output.

Explain this code

Optional: paste Anchor, Solana, or Rust code so the Copilot can map primitives back to glossary terms.

Ask a glossary-grounded question

Ask a glossary-grounded question

The Copilot will answer using the current term, related concepts, mental models, and the surrounding glossary graph.

Concept graph

See the term as part of a network, not a dead-end definition.

These branches show which concepts this term touches directly and what sits one layer beyond them.

Branch

Consensus Mechanism

The protocol by which nodes in a distributed network agree on the current state of the ledger. Common mechanisms include Proof of Work (Bitcoin), Proof of Stake (Ethereum, Solana), and BFT variants. Consensus ensures all honest nodes converge on the same transaction history despite potential network delays or malicious actors.

Branch

Tower BFT

Solana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce communication overhead in traditional PBFT from O(n²) to O(n). Validators vote on forks with exponentially increasing lockout periods—each consecutive vote doubles the lockout, making rollbacks progressively more expensive. A fork is finalized when it reaches supermajority (66.7%+ of stake).

Branch

Supermajority

A threshold of more than 2/3 (66.7%) of total active stake agreeing on a particular fork. Supermajority is required for optimistic confirmation and, through sustained voting, for finality (rooting). If supermajority is lost (e.g., too many validators offline), the cluster halts until it recovers.

Branch

Byzantine Fault Tolerance (BFT)

The ability of a distributed system to reach consensus despite some nodes behaving arbitrarily (maliciously or failing). BFT algorithms tolerate up to f faulty nodes in a network of 3f+1 total nodes (1/3 threshold). Solana's Tower BFT, Tendermint, and PBFT are BFT consensus variants. BFT is essential for permissionless blockchains.

Next concepts to explore

Keep the learning chain moving instead of stopping at one definition.

These are the next concepts worth opening if you want this term to make more sense inside a real Solana workflow.

Blockchain General

Consensus Mechanism

The protocol by which nodes in a distributed network agree on the current state of the ledger. Common mechanisms include Proof of Work (Bitcoin), Proof of Stake (Ethereum, Solana), and BFT variants. Consensus ensures all honest nodes converge on the same transaction history despite potential network delays or malicious actors.

Core Protocol

Tower BFT

Solana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce communication overhead in traditional PBFT from O(n²) to O(n). Validators vote on forks with exponentially increasing lockout periods—each consecutive vote doubles the lockout, making rollbacks progressively more expensive. A fork is finalized when it reaches supermajority (66.7%+ of stake).

Core Protocol

Supermajority

A threshold of more than 2/3 (66.7%) of total active stake agreeing on a particular fork. Supermajority is required for optimistic confirmation and, through sustained voting, for finality (rooting). If supermajority is lost (e.g., too many validators offline), the cluster halts until it recovers.

Blockchain General

Byzantine Fault Tolerance (BFT)

The ability of a distributed system to reach consensus despite some nodes behaving arbitrarily (maliciously or failing). BFT algorithms tolerate up to f faulty nodes in a network of 3f+1 total nodes (1/3 threshold). Solana's Tower BFT, Tendermint, and PBFT are BFT consensus variants. BFT is essential for permissionless blockchains.

Commonly confused with

Terms nearby in vocabulary, acronym, or conceptual neighborhood.

These entries are easy to mix up when you are reading quickly, prompting an LLM, or onboarding into a new layer of Solana.

Core Protocolnakamoto-consensus

Nakamoto Consensus

Consensus family where the longest (or heaviest) valid chain is considered canonical, originally used in Bitcoin's Proof of Work. Participants probabilistically converge on a single chain without explicit voting rounds. Solana's Tower BFT is not Nakamoto consensus — it uses explicit BFT voting with lockout periods rather than chain-length selection, providing deterministic rather than probabilistic finality.

Related terms

Follow the concepts that give this term its actual context.

Glossary entries become useful when they are connected. These links are the shortest path to adjacent ideas.

Blockchain Generalconsensus

Consensus Mechanism

The protocol by which nodes in a distributed network agree on the current state of the ledger. Common mechanisms include Proof of Work (Bitcoin), Proof of Stake (Ethereum, Solana), and BFT variants. Consensus ensures all honest nodes converge on the same transaction history despite potential network delays or malicious actors.

Core Protocoltower-bft

Tower BFT

Solana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce communication overhead in traditional PBFT from O(n²) to O(n). Validators vote on forks with exponentially increasing lockout periods—each consecutive vote doubles the lockout, making rollbacks progressively more expensive. A fork is finalized when it reaches supermajority (66.7%+ of stake).

Core Protocolsupermajority

Supermajority

A threshold of more than 2/3 (66.7%) of total active stake agreeing on a particular fork. Supermajority is required for optimistic confirmation and, through sustained voting, for finality (rooting). If supermajority is lost (e.g., too many validators offline), the cluster halts until it recovers.

Blockchain Generalbyzantine-fault-tolerance

Byzantine Fault Tolerance (BFT)

The ability of a distributed system to reach consensus despite some nodes behaving arbitrarily (maliciously or failing). BFT algorithms tolerate up to f faulty nodes in a network of 3f+1 total nodes (1/3 threshold). Solana's Tower BFT, Tendermint, and PBFT are BFT consensus variants. BFT is essential for permissionless blockchains.

More in category

Stay in the same layer and keep building context.

These entries live beside the current term and help the page feel like part of a larger knowledge graph instead of a dead end.

Core Protocol

Proof of History (PoH)

A clock mechanism that cryptographically proves the passage of time between events. PoH uses a sequential SHA-256 hash chain where each output becomes the next input, creating a verifiable ordering of events without requiring consensus. The leader produces ~400,000 hashes per slot (~400ms), and any validator can verify the sequence in parallel, enabling Solana's high throughput by removing the need for validators to agree on time.

Core Protocol

Tower BFT

Solana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce communication overhead in traditional PBFT from O(n²) to O(n). Validators vote on forks with exponentially increasing lockout periods—each consecutive vote doubles the lockout, making rollbacks progressively more expensive. A fork is finalized when it reaches supermajority (66.7%+ of stake).

Core Protocol

Slot

A time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 milliseconds. Slots are numbered sequentially from genesis and grouped into epochs of 432,000 slots (~2-3 days). Not every slot produces a block—a skipped slot means the leader was offline or too slow.

Core Protocol

Block

A set of entries produced by a leader during a single slot. A block contains transactions bundled into entries, each with a PoH hash proving ordering. Blocks are broken into shreds for network propagation via Turbine. Maximum block size is limited by compute units (48M CU cap per block) rather than byte size.