Summit is a high-performance consensus client designed to drive EVM-based blockchains. Originally built to power the Seismic Blockchain, Summit works with any EVM client that implements the Engine API.
- Responsive Consensus: Powered by the Simplex consensus protocol, enabling sub-second block times
- High Throughput: Significantly higher TPS than Ethereum
- EVM Compatible: Works with any execution client supporting the Engine API
- BLS12-381 Cryptography: Secure validator key management
- Built with Commonware: Leverages primitives from the Commonware library
Summit uses the Simplex protocol, a responsive consensus mechanism that adapts to network conditions rather than waiting for predetermined timeouts. This allows the network to move as fast as conditions permit, achieving sub-second block times in most cases.
We run our benchmarks using EC2 instances spread across these regions: ["us-west-2", "eu-central-1", "us-east-1", "ap-northeast-1", "sa-east-1"]
. We use 100 kB blocks.
Metric | 5 nodes | 10 nodes | 20 nodes | 100 nodes | 500 nodes | 1000 nodes |
---|---|---|---|---|---|---|
Average TPS | 707 tx/s | 962 tx/s | 1051 tx/s | TBD | TBD | TBD |
Average Block Time | 1290ms | 940ms | 870ms | TBD | TBD | TBD |
The TBD benchmarks are currently running (7/24/25). With 20 nodes and under, the mempool is more of a bottleneck than consensus. This is why we see performance increasing for the first few columns.
You can reproduce these results by running the sequence in this repository.
- Rust (latest stable)
- An EVM execution client (e.g., Reth, Geth) with Engine API support
- (Optional) Reth binary in PATH for local testnet
git clone https://github.com/SeismicSystems/summit.git
cd summit
cargo build --release
cargo run -- --key-path path/to/store/key keys generate
cargo run -- --key-path path/to/store/key keys show
Create a genesis file that references your EVM genesis configuration. See example_genesis.toml for the required format.
Ensure your EVM client is running, then:
cargo run -- \
--key-path /path/to/priv-key \
--store-path /storage/directory \
--engine-jwt-path /path/to/evm/jwt.hex \
--genesis-path /path/to/genesis.toml
The validator will automatically discover other nodes listed in the genesis file and begin participating in consensus. Transactions can be submitted through the EVM client's RPC interface as usual.
To spin up a 4-node testnet locally (requires reth
in PATH):
cargo run --bin testnet
Summit acts as the consensus layer, communicating with EVM execution clients through the Engine API. The execution client remains responsible for building blocks and processing transactions, while Summit handles:
- Validator coordination
- Block proposals
- Consensus finalization
- Network communication
- Dynamic Validator sets and staking through the Ethereum staking contract
- Currently Summit just uses a static validator set at Genesis
- We will leverage EVMs staking contract and add and remove validators in a similar fashion as Ethereum
- Deeper benchmarks
- More optimizations (potentially DKG threshold signatures to improve throughput)
- Full Audit and completeness Q4 2025