What Is Consensus Mechanism?
Definition
A consensus mechanism is the method a blockchain uses to agree on which transactions are valid — ensuring all nodes have the same copy of the ledger without a central authority.
Consensus mechanisms solve the fundamental problem of distributed systems: how do thousands of independent computers agree on the truth without a central coordinator?
- Proof of Work (PoW) — miners solve math puzzles. Most secure but energy-intensive. Bitcoin uses PoW.
- Proof of Stake (PoS) — validators stake tokens as collateral. Energy-efficient. Ethereum and Base use PoS.
- Proof of History (PoH) — Solana's innovation. A verifiable clock that orders transactions before consensus, enabling 400ms block times.
- Delegated Proof of Stake (DPoS) — token holders vote for validators. Used by EOS, Tron.
- Transaction speed — PoH (Solana) is fastest, PoW (Bitcoin) is slowest
- Gas costs — PoW chains have highest fees, L2s have lowest
- Finality — how quickly a transaction is guaranteed permanent
- Security model — what it would cost to attack the network
Related Terms
Blockchain
A blockchain is a distributed, immutable digital ledger that records transactions across a network of computers — the foundational technology behind all cryptocurrencies and tokens.
Proof of Stake (PoS)
Proof of Stake is a consensus mechanism where validators stake cryptocurrency to secure the network — replacing energy-intensive mining with capital-based security.
Gas (Transaction Fee)
Gas is the fee paid to blockchain validators for processing transactions. On Ethereum it's measured in gwei, on Solana it's called a priority fee — both compensate the network for computation.
Mainnet
Mainnet is the live, production blockchain where real transactions with real value occur — as opposed to testnets (devnet, Sepolia) which use fake tokens for testing.