BTC 104 820 $ +3,2ETH 3 914 $ −1,4GAS 14F&G 74
/llms.txt
Home / News / technologie

Parallel vs Sequential EVM Architecture: A Real-World Benchmark Shaping the US Web3 Market

SOPHIA C. · PROTOCOL ARCHITECT·24 AOÛT 2026 À 12:46 (UTC+1)·6 MIN READ
PARALLEL EVM & ZK

TECHNOLOGIE

noutita.com#TECHNOLOGIE
In Brief (TL;DR)

An expert look at how parallel EVM execution stacks up against traditional sequential EVM, with real-world metrics, tradeoffs, and implications for US developers and users.

In an era where throughput and latency define competitive on-chain applications, the question isn’t whether parallel EVMs can exist, but whether they outperform traditional, sequential EVM pipelines in real-world workloads. This piece tests that premise against market-ready benchmarks, data availability economics, and the practical frictions of implementing parallel execution on live networks.

In Brief (TL;DR): Think multiple checkout lines at a busy US exchange floor. A single line (sequential EVM) can bottleneck a surge of trades; parallel lines (multi-proposer, parallel EVM) can clear more trades per second, but only if the shop floor—state access, conflicts, and data availability—lets workers operate independently without trampling one another.

1. Macro Context & On-Chain Metrics

Over the past two years, the Ethereum ecosystem has vaulted data availability and block-size capacity to support an expanding mix of L1 and L2 workloads. A 2026 study tracking mainnet and L2 speeds found that daily average Ethereum mainnet TPS rose from 13.67 in 2024 Q1 to 25.78 in 2026 Q1, with L2s contributing a higher throughput and lower fees on average. The same analysis highlights that blob-backed upgrades (EIP-4844) and related blob-parameter changes have driven significant throughput gains across both L1 and L2 layers. This mirrors a broader trend: data availability tooling and larger block gas limits are central to lifting real-world throughput, not just theoretical capacity. In this context, the ecosystem has moved toward a modular model where order, execution, and data dissemination can decouple to a degree, enabling parallelism to scale while maintaining correctness. (Source synthesis: arXiv:2606.22206, 2026; Ethereum.org data/analytics framework)

Against this backdrop, parallel EVM research and deployments have produced striking numbers in specialized ecosystems. Sei Giga, the Sei Labs initiative, targets multi-proposer EVM execution with parallel block proposals and asynchronous state attestation. In a May 2025 whitepaper, Sei Labs announced 5 gigagas throughput with ~200k TPS as an aspirational target for high-performance EVM workloads, plus sub-400ms ordering finality. The team also detailed a dedicated execution client and Autobahn consensus, designed so that execution runs after ordering rather than locking consensus in the critical path. These figures underline a market push toward parallelism as a path to higher usable throughput for trading, DeFi, and market data feeds in the US market. (Sei Labs blog, May 19, 2025; Sei Giga docs, 2026 status)

In parallel, traditional EVM owners are exploring parallel execution in other ecosystems. Stanford researchers demonstrated that parallel transaction execution is feasible in an EVM-like setting, achieving 1.1x to 4x speedups on multi-threaded configurations under Block-STM-based execution, depending on storage latency and scheduling policies. The research does not claim production-grade deployment; rather, it provides a rigorous benchmark of when parallelism pays off and when it stalls due to conflicts or I/O bottlenecks. This serves as a sobering counterpoint to “free lunch” claims, reminding readers that real-world workloads are often not perfectly parallelizable. (Concerto: Transaction-Parallel EVM, Stanford CS244B project, 2024–2025)

From a data-availability standpoint, the EIP-4844 proto-danksharding effort anchors blob data as a low-cost, high-volume input for rollups. The blob model is designed to be a stopgap on the path to full sharding, delivering data availability with modest on-chain footprint per block (target ~0.375 MB, max ~0.75 MB per block) and a separate blob gas fee market. The design decouples execution from blob availability, enabling parallel data flows without forcing every node to store all blob data on-chain long-term. This is a critical piece of the architecture for parallel EVMs to avoid bloating the execution layer with data that only needs to be available for rollups for a short time. (EIP-4844: Shard Blob Transactions; Ethereum.org blob data strategies)

In the broader US market, practitioners eye parallel EVMs as a path to absorb rising DeFi activity, high-frequency trading signals, and cross-chain liquidity without breaking the user experience. The data suggests that L2s and parallel-capable L1s can deliver materially lower fees and higher throughput, a combination that could redefine US onboarding, DeFi liquidity, and regulated compliance workflows if execution layers stay deterministic under higher concurrency. (arXiv:2606.22206; Sei Giga whitepaper arXiv 2505.14914)

2. Technical Decoding & Nuance

2.1 How parallel EVMs work in practice

Parallel EVM architectures separate the problem into ordered sequencing, parallel execution, and state attestation. In Sei Giga’s model, transactions are ordered first, then executed in parallel across multiple CPU cores, with a concurrency-control layer to detect conflicts and re-execute only those transactions that touch the same state becomes a bottleneck. The execution path is asynchronous to ordering, and the final state is reconciled through a separate attestation phase. This can yield dramatic throughput gains when block content has low cross-transaction state contention. (Sei Docs, What Is Sei Giga?; Sei Giga whitepaper v2)

Critically, Sei’s architecture emphasizes multi-proposer lanes where every validator can propose blocks in parallel, reducing the bottleneck of a single leader per block. Autobahn consensus formalizes this lane-based throughput model, with a pipelined cadence designed to achieve sub-250 ms ordering finality in practice. Execution, state commitments, and data dissemination run on parallel tracks after ordering, with guardrails to ensure determinism. (Sei Docs: Parallel Execution; Autobahn consensus)

2.2 The conflicts game: why parallelism isn’t free

The core challenge for parallel EVMs is state conflicts. If two transactions read and write the same storage location, the system must detect and roll back or re-execute the conflicting path to maintain determinism. That dynamics is what makes parallelism workload-sensitive. The Stanford Concerto project demonstrates that with careful scheduling and MVCC-like techniques, parallel execution can yield 1.1x–4x speedups under realistic SSD latencies, but only under workloads with limited cross-transaction dependencies. In workloads with higher contention, the gains shrink and in the worst case can approach the cost of sequential execution. This signals a clear caveat for production deployment: workload characterization matters, and a one-size-fits-all claim about parallel EVMs’ superiority is unwarranted. (Concerto: Transaction-Parallel EVM; Stanford CS244B)

2.3 Blob data and data availability as enablers (or pain points)

EIP-4844 reframes the role of data by enabling blob-carrying transactions that do not get executed by the VM but provide a data-availability guarantee for rollups at a fraction of calldata costs. The EIP sets a target of roughly 0.375 MB per block (3 blobs) with a hard cap of 0.75 MB per block, a design choice intended to keep blob data transient yet highly available. This separation between data availability and execution is essential for parallel EVMs because it reduces the data coupling that can throttle parallel execution. It also introduces new base-fee dynamics (blob gas) and a separate mempool path, creating a two-track flow for throughput: fast, parallelizable execution plus cheap blob-backed data posting for rollups. (EIP-4844; Ethereum.org blob data)

2.4 The sequential baseline and its persistence in the US market

While parallel models promise higher peak throughput, most current deployments still rely on a sequential EVM path at the base layer or in early-stage parallel variants. Traditional single-leader block production (even in optimistic or deterministic variants) remains a robust, simple model with well-understood edge-case behavior and security proofs. In practice, the US market’s experience—spanning centralized and decentralized exchanges, on-chain liquidity providers, and regulated custodians—will likely hinge on how well parallel engines can maintain deterministic outcomes under mixed, real-world workloads and how smoothly blob data can be integrated into the execution path. The early-stage research (Stanford Concerto) and production-oriented deployments (Sei Giga) collectively illustrate both the promise and the partial maturity of parallel EVMs. (Concerto; Sei Docs; Sei blog)

2.5 Where the two schools diverge—and what that means for US users

Two credible viewpoints coexist. On one side, parallel EVMs are proven to deliver material throughput gains in laboratory and testnet-like settings, and real-world networks like Sei Giga project 200k TPS targets with sub-400 ms finality and multi-proposer lanes. This yields a compelling case for US DeFi trading apps and cross-chain services where latency and cost matter. On the other side, the precise gains depend on workload composition; high contention workloads may see only modest improvements, and the new architecture introduces complexity in debugging, MEV interactions, and cross-layer guarantees. The divergent data—Sei’s ambitious throughput ambitions versus Concerto’s guarded empirical gains—points to a market truth: parallel EVMs are powerful, but their real-world advantage hinges on workload structure and data-availability discipline. (Sei Giga whitepaper v2; Concerto; arXiv:2606.22206)

3. Sources & Factual References

  • Sei Labs Blog: Sei Labs Publishes Whitepaper for Sei Giga: The First Multi-Proposer EVM Layer 1 Blockchain. May 19, 2025. (Sei Labs) [Source for Sei Giga throughput and design goals]
  • Sei Docs: What Is Sei Giga? (Sei Giga architecture, Autobahn consensus, parallel execution, Ares, Eidos). Status updates through August 2026. [Source for architecture and current capabilities]
  • EIP-4844: Shard Blob Transactions (Ethereum.org EIPs). [Source for blob data concept, target blob per block, and blob gas economics]
  • Ethereum Data Availability Strategies (ethereum.org): Data storage strategies for blockchains and blobs. [Source for context on blob data usage and data availability]
  • Concerto: Transaction-Parallel EVM (Stanford CS244B). [Source for empirical speedups and workload sensitivity of parallel EVM]
  • Transaction Costs and Speed in the Ethereum Ecosystem: Scalability of the Mainnet and Layer 2s (arXiv:2606.22206, June 2026). [Source for mainnet/L2 throughput and fees, including blob impact; longitudinal 2024–2026 data]
  • Sei Giga arXiv preprint (2505.14914; 2025–2026 updates): [Source for technical underpinnings and performance targets]
  • These sources reflect the state of play as of August 2026 and frame the ongoing tradeoffs between parallel and sequential EVM architectures in a US-market context.

    Analysis written by Sophia C. (ZK Architect & SVM Specialist). Verified on-chain data and block-stamped metrics.