Free 30-min Web3 Consultation
Book Now
Smart Contract Security Audits
Learn More
Custom DeFi Protocol Development
Explore
Full-Stack Web3 dApp Development
View Services
Free 30-min Web3 Consultation
Book Now
Smart Contract Security Audits
Learn More
Custom DeFi Protocol Development
Explore
Full-Stack Web3 dApp Development
View Services
Free 30-min Web3 Consultation
Book Now
Smart Contract Security Audits
Learn More
Custom DeFi Protocol Development
Explore
Full-Stack Web3 dApp Development
View Services
Free 30-min Web3 Consultation
Book Now
Smart Contract Security Audits
Learn More
Custom DeFi Protocol Development
Explore
Full-Stack Web3 dApp Development
View Services
the-ethereum-roadmap-merge-surge-verge
Blog

Why Faster EVMs Are Hard to Ship

The promise of a high-throughput Ethereum Virtual Machine is central to the Surge. This analysis deconstructs the technical, economic, and consensus-layer bottlenecks that make it a multi-year, multi-disciplinary slog.

introduction
THE BOTTLENECK

The Surge's Slog: Why EVM Throughput Isn't a Simple Switch

Increasing EVM throughput requires fundamental trade-offs between decentralization, security, and state growth, not just higher gas limits.

State Growth Cripples Nodes. Every transaction creates permanent state. Doubling throughput doubles the hardware requirements for archive nodes, centralizing infrastructure and creating a data availability crisis.

Execution Is Not the Constraint. The EVM's execution layer is rarely the bottleneck. The real limits are data publishing to L1 and state synchronization across the network.

Rollups Expose the Truth. Optimistic rollups like Arbitrum and ZK-rollups like zkSync Era already offload execution. Their throughput is gated by L1 calldata costs, proving that scaling requires new data layers like EigenDA or Celestia.

Evidence: Ethereum's base layer processes ~15 TPS. A solo-staker's node requires ~2TB of SSD. Doubling this state growth rate would price out most validators within 18 months.

deep-dive
THE HARDWARE REALITY

Deconstructing the Bottleneck: State, Storage, and Synchrony

EVM speed is constrained by fundamental hardware bottlenecks, not just software inefficiencies.

The EVM state is a global bottleneck. Every transaction must read and write to a single, massive Merkle-Patricia Trie, causing contention and limiting parallel execution. This is why even high-throughput L2s like Arbitrum and Optimism face diminishing returns.

Storage operations dominate gas costs. The EVM's 20k gas cost for a storage write is a proxy for the real-world latency of persistent disk I/O. Projects like Solana avoid this by treating state as ephemeral, but that requires a different security model.

Synchronous execution prevents scaling. The EVM's strict, single-threaded order of execution guarantees determinism but sacrifices throughput. Parallel EVM clients like Monad and Sei attempt to break this by analyzing dependencies, but they still hit the state access bottleneck.

Evidence: Ethereum's average block processes ~150 transactions. A 10x speedup requires redesigning the state model, not just tweaking the client, as seen in the architectural shifts of Fuel and Eclipse.

WHY FASTER EVMS ARE HARD TO SHIP

The Scaling Trade-Off Matrix: A Builder's Dilemma

A comparison of the fundamental trade-offs between parallel EVM execution, optimistic rollups, and zkEVMs, quantifying the hidden costs of performance.

Core Metric / ConstraintParallel EVM (e.g., Monad, Sei)Optimistic Rollup (e.g., Arbitrum, Optimism)zkEVM (e.g., zkSync Era, Polygon zkEVM)

Peak Theoretical TPS (Ethereum L1 = ~15)

10,000+

~4,000

~2,000

Time to Finality (L1 Inclusion to Guaranteed)

< 1 sec

~1 week (Challenge Period)

~10-20 min (ZK Proof Gen & Verify)

Developer Friction (Deviation from EVM)

Low (Bytecode-compatible)

Very Low (Geth fork)

Medium (Custom opcodes, Solidity quirks)

Sequencer Decentralization Timeline

Months (Native chain)

Years (Stage 2 rollup)

2 Years (Proof decentralization)

Hardware Cost for Node Operators

High (SSD, >32GB RAM)

Medium (Standard archive node)

Extreme (ZK prover, 128GB+ RAM)

State Growth per 1M TPS/day

~500 GB (Requires state expiry)

~50 GB (Compressed calldata on L1)

~20 GB (ZK proofs compress state)

Cross-Domain Composability Latency

Instant (Single shard)

~1 week (Via canonical bridges)

~20 min (Via validity proofs)

counter-argument
THE LEGACY TRAP

The Solana Counterfactual: What If We Just Started Over?

EVM L2s are constrained by architectural decisions made for a single-threaded world, making radical performance gains a re-engineering nightmare.

Monolithic EVM architecture is the root constraint. The EVM's design bundles execution, storage, and consensus into a single state machine, creating a sequential processing bottleneck that parallelization efforts like BlockSTM must work around, not replace.

Parallel execution is a retrofit, not a foundation. Projects like Monad and Sei must build complex, custom virtual machines and state access systems to bypass EVM limitations, a multi-year engineering effort Solana avoided with its native parallel runtime.

State growth management is an existential crisis for high-throughput EVMs. Without Solana's global state tree or Sui's object-centric model, EVM chains rely on cumbersome solutions like state expiry or off-chain data availability, adding complexity for developers and users.

Evidence: Arbitrum Stylus and the Ethereum Cancun-Deneb upgrade demonstrate the incremental, consensus-driven pace of EVM evolution, contrasting with Solana's 100ms block times and Firedancer's sub-second finality achieved through a clean-slate design.

takeaways
THE STATE SYNC BOTTLENECK

TL;DR for Protocol Architects

Scaling EVM execution speed is trivial; scaling state synchronization is the real, unsolved engineering challenge.

01

The State Trilemma: Fast, Decentralized, Consistent

You can only pick two. Achieving sub-second finality requires sacrificing either decentralization (via a small validator set) or state consistency (via optimistic execution). Full nodes cannot sync a ~1TB+ chain state in real-time.

  • Decentralization Cost: A ~500ms slot time necessitates high hardware specs, centralizing validators.
  • Consistency Risk: Fast chains often fork, requiring complex reorg handling and MEV protection.
~1TB+
State Size
<2
Pick 2
02

Witness Propagation is the Hidden Tax

After execution, proving the new state to the network creates a bandwidth wall. Monolithic EVMs force full state witnesses on every node, unlike modular designs like Celestia or EigenDA.

  • Bandwidth Wall: A single block can require 10s of MBs of witness data, crippling p2p networks.
  • Solution Path: Requires stateless clients, Verkle trees, or offloading data availability (DA).
10s MB
Witness/Block
0
Native Scaling
03

The L2 Fallacy: Sequencer Centralization

Optimistic & ZK Rollups (Arbitrum, zkSync) appear fast because they use a centralized sequencer. Decentralizing the sequencer reintroduces the state sync problem, as seen in the long road to Arbitrum BOLD or zkSync's ZK Porter.

  • User Experience vs. Security: Users get ~100ms latency by trusting a single operator.
  • Real Decentralization: Adds ~2-10s to finality for consensus, mirroring L1 challenges.
~100ms
Centralized Latency
2-10s
Decentralized Latency
04

Parallel Execution Isn't a Panacea

While Solana and Aptos champion parallel execution (Sealevel, Block-STM), the EVM's inherent sequential design makes this a hard fork-level change. Monad and Sei are attempting this, but it requires breaking compatibility.

  • Throughput vs. Latency: Parallelism improves TPS, not necessarily single-transaction finality time.
  • Compatibility Tax: Full EVM equivalence (Ethereum tooling, wallets) locks you into a sequential model.
10k+ TPS
Theoretical Gain
High
Breakage Cost
05

The Memory Hole: MPT I/O Kills Performance

The Ethereum Merkle-Patricia Trie (MPT) is a performance disaster for fast chains. Random I/O accesses for state reads/writes dominate block processing time. Alternatives like Flat Storage (Near) or Verkle Trees are multi-year migrations.

  • Database Bottleneck: >80% of block time can be spent on LevelDB/RocksDB lookups.
  • Migration Hell: Changing the state model invalidates all existing tooling and infrastructure.
>80%
I/O Time
Years
Migration Timeline
06

The Interop Trap: Fast Chains Are Silos

Achieving speed often means forgoing synchronous composability with Ethereum. Fast-finality chains cannot be natively settled on Ethereum's ~12-minute finality, forcing bridges like LayerZero or Axelar which introduce their own latency and trust assumptions.

  • Composability Loss: Dapps cannot atomically interact with Ethereum mainnet.
  • Bridge Risk: Users trade speed for additional trust in external validator sets.
~12min
Ethereum Finality
High
Interop Latency
ENQUIRY

Get In Touch
today.

Our experts will offer a free quote and a 30min call to discuss your project.

NDA Protected
24h Response
Directly to Engineering Team
10+
Protocols Shipped
$20M+
TVL Overall
NDA Protected direct pipeline
Why Faster EVMs Are Hard to Ship (2024) | ChainScore Blog