pen-to-squareContinuum Overview

Continuum is a modular blockchain with separation of concerns - Sequencing, Execution, Consensus, and DA are handled at different levels of the stack.

The architecture of the Continuum blockchain is focused on optimizing market microstructure for onchain orderbooks. With this goal in mind, we've rewritten various parts of the stack.

Performance Optimization

It is critical that Continuum Chain be able to handle the maximum amount of transactions that a single threaded system would allow. In attempting to approach this theoretical limit, we've extensively optimized various parts of the blockchain stack, from ordering to execution to consensus. Very importantly, we've moved consensus out of the hot path for sequencing finality - this is the big change that allows ordering finality to reduce from 100-400 ms down to 1-2 ms for the first time.

Transaction Flow

1

Order Submitted to Sequencer

Order may be unencrypted or timelock encrypted; submitted to Sequencer, which produces an instant signed reciept including the exact "Tick" at which the transaction was included (90 microseconds granular). Inclusion and ordering is Final at this time.

2

Orders consumed by execution layer

The "leader" is just another full node that executes the state transition function upon the ordered list of transactions produced by the Sequencer. Since ordering and inclusion is already final, execution is purely deterministic - there is no leader privledge or discretion like other blockchains.

3

contBFT voting

Once the "leader" produces a finalized block, all validators vote on the correctness of the execution of the STF given the ordered tx. list from (1). This step is important for economic finality, but effective finality is reached right after (1). Crucially, there are no fork choice rules needed, as the execution layer can only produce ONE valid block from an ordered list of transactions.

Last updated