// Consensus

Convergent
Proof of Stake

The world's fastest truly decentralised consensus algorithm for a global state machine. CPoS operates as a CRDT, not a blockchain, solving the scalability trilemma.

<1sFinality
BFT Threshold
~0Energy Cost
// 001

How CPoS Works

Consensus through convergence, not competition

Belief Propagation

Each peer maintains a Belief—a data structure representing its view of consensus across the whole network, including the latest block orderings from other peers. Beliefs are shared through random gossip between peers, requiring only occasional communication to keep the system in sync.

Belief Merge Function

When a peer receives beliefs from others, it applies the Belief Merge Function—a mathematical operation that combines beliefs into an updated view. This function is idempotent, commutative, and associative, forming a join-semilattice that satisfies the conditions of a Conflict-free Replicated Data Type (CRDT). Repeated applications automatically converge to a stable consensus.

Stake-Weighted Voting

Conflicts in proposed block orderings are resolved by stake-weighted voting. Peers compute total stake voting for each proposed block at each position. Peers supporting minority orderings are excluded from subsequent votes, creating a strong incentive to align with the majority. This procedure provably converges to a single ordering.

Two-Phase Commit

Once 2/3 of peers align on the same ordering, a Proposed Consensus Point is established. When 2/3 of peers confirm this proposal, consensus is finalised. From this point, the ordering is immutable. Digital signatures ensure no peer can impersonate another—full cryptographic security is maintained throughout.

// 002

Not a Blockchain

A fundamentally different architecture

Traditional Blockchains

  • Sequential block production by elected leaders
  • Each block must reference the previous block hash
  • Transactions broadcast to public mempool
  • Vulnerable to front-running and MEV extraction
  • Block time creates inherent latency floor
  • Energy-intensive Proof of Work or complex leader election

Convex CPoS

  • Any peer proposes blocks concurrently, no leader needed
  • Blocks are independent—no chain, no sequential dependency
  • Transactions submitted to a trusted peer directly
  • Front-running resistant by design
  • Zero block delay, millisecond finality
  • Lightweight CRDT convergence, negligible energy cost
// 003

Advantages

What CPoS delivers

Millisecond Finality

No block delay. No mempool. Transactions confirm in milliseconds, not minutes. CPoS is limited only by the speed of light.

Leaderless

Any peer may propose a block at any time. No leader election, no sequential bottleneck, no single point of failure. Blocks are proposed concurrently.

Byzantine Fault Tolerant

Consensus is guaranteed and stable as long as at least 2/3 of voting power follows the protocol honestly. Proven secure against even powerful adversaries.

Front-running Resistant

Users submit transactions to a trusted peer—not broadcast to a public mempool. No opportunity for miners or validators to reorder transactions for profit.

100% Green

No Proof of Work. No energy-intensive mining. CPoS achieves superior security using a fraction of the power—ecologically defensible by design.

Atomic Execution

Every transaction executes fully or rolls back completely. Turing-complete logic with automatic failure protection eliminates partial failures.

// 004

Security Guarantees

Proven stability under adversarial conditions

51%

Majority Stability

If more than 50% of peers adopt the same ordering and are mutually aware of each other's agreement, the ordering is provably stable—no matter what adversaries attempt.

67%

Byzantine Threshold

With at least 2/3 of peers aligned and fewer than 1/3 being adversarial, consensus is provably stable against irrelevant alternatives and colluding attackers.

75%

Adversary Resistance

With 75% alignment, consensus holds even against adversaries capable of temporarily isolating peers, censoring messages, or delaying activity of honest participants.

Dive deeper

Explore the full Convex technology stack or start building on the network today.