Skip to main content

Somnia Network: How a SoftBank-Backed L1 Hit One Million TPS Without Abandoning the EVM

· 8 min read
Dora Noda
Software Engineer

In November 2024, a relatively obscure devnet quietly logged 1.05 million ERC-20 transfers in a single second. No sharding. No rollups. Just one Layer 1 chain running plain EVM bytecode. Less than a year later, that chain — Somnia — launched its mainnet with backing from SoftBank and a testnet track record of 10 billion transactions. In a landscape where most "high-performance" chains still struggle to break 5,000 real-world TPS, Somnia's claim of seven-figure throughput demands a closer look.

From Metaverse Infrastructure to Blockchain: Improbable's Pivot

Somnia didn't emerge from the typical crypto startup playbook. Its parent company, Improbable, spent nearly a decade building distributed simulation technology for defense, gaming, and metaverse applications — coordinating millions of entities in real time across shared virtual worlds. When the team turned to blockchain, they brought an engineering mindset shaped by low-latency, high-concurrency systems rather than the cryptographic-first tradition that dominates most L1 design.

The core insight was straightforward: if you want a blockchain that can power real-time applications — social platforms, gaming worlds, live prediction markets — you need to treat performance not as a nice-to-have but as the foundational constraint. Every architectural decision in Somnia flows from that principle.

MultiStream Consensus: Decoupling Data from Agreement

Most blockchains force every transaction through a single pipeline: propose a block, reach consensus, execute, finalize. This linear process creates an unavoidable bottleneck. Somnia's MultiStream consensus, inspired by the 2024 "Autobahn" whitepaper, tears that pipeline apart.

Here's how it works:

  • Independent data chains. Every validator publishes its own blockchain — called a data chain — containing raw transaction data. Each data chain is entirely independent, and only the owning validator ever appends to it. There are no safety mechanisms on these individual chains; validators are free to publish as fast as their hardware allows.

  • A lightweight consensus chain. A separate consensus chain periodically records the current head of every data chain. Each consensus block therefore semantically includes all transactions across all data chains since the last checkpoint.

  • Deterministic ordering. A pseudorandom function orders the data chains, producing a single globally consistent sequence of transactions for execution. This means all nodes process the same transactions in the same order, preserving the coherent state that smart contracts require.

The elegance of this design is that data production — the most bandwidth-intensive task — is completely decoupled from consensus — the most latency-sensitive task. Validators flood the network with transactions in parallel while a much lighter consensus mechanism simply keeps everyone in sync. The result is throughput that scales with validator count rather than being bottlenecked by agreement protocols.

Compiled EVM: From Interpretation to Machine Code

High throughput means nothing if each transaction takes milliseconds to execute. Ethereum's standard EVM is an interpreter — it reads bytecode instructions one at a time, which adds substantial overhead per operation. Somnia replaces this with ahead-of-time compilation, converting EVM bytecode directly into native x86 machine code.

The performance difference is dramatic. In benchmarks, compiled ERC-20 transfers execute in hundreds of nanoseconds — roughly three orders of magnitude faster than interpreted execution. During the November 2024 DevNet test, this translated to:

  • 1.05 million ERC-20 transfers per second
  • 300,000 NFT mints per second
  • 50,000 Uniswap-style AMM swaps per second
  • 100ms block times throughout

Critically, Somnia maintains full EVM compatibility. Developers deploy standard Solidity contracts without modification. The compilation happens at the infrastructure layer, meaning the entire existing Ethereum toolchain — Hardhat, Foundry, Remix, OpenZeppelin — works out of the box. This is a significant strategic advantage: rather than asking developers to learn a new VM or language, Somnia competes for the same developer pool that Ethereum, Arbitrum, and Base already serve.

ICEdb: A Database Built for Blockchain State

The third pillar of Somnia's performance stack is ICEdb, a purpose-built state database. Traditional blockchain nodes rely on general-purpose key-value stores (LevelDB, RocksDB) that were never designed for the access patterns blockchains demand — millions of small, random reads and writes per second with strict determinism requirements.

ICEdb takes a different approach:

  • Memory-resident hot state. The most frequently accessed data lives in RAM, with custom pre-fetching algorithms that predict and load state ahead of execution.
  • Nanosecond-scale operations. Common reads and writes complete in 15 to 100 nanoseconds — fast enough that storage access is no longer the dominant cost in transaction execution.
  • Deterministic performance. Unlike disk-backed databases where latency can spike unpredictably due to I/O contention, ICEdb provides consistent performance characteristics that allow accurate gas pricing based on actual computational costs.
  • Built-in snapshots. The database supports instant state snapshots without pausing execution, enabling consensus checkpoints and validator sync without interrupting transaction processing.

Together, MultiStream consensus, compiled EVM, and ICEdb form a vertically integrated performance stack where each layer is purpose-built rather than adapted from general-purpose components.

Testnet to Mainnet: The Numbers Behind the Launch

Somnia's testnet phase produced numbers that are hard to ignore. Before the September 2025 mainnet launch, the network processed over 10 billion transactions across 118 million unique wallets, with more than 70 ecosystem partners building on the platform. The testnet set a record of 1.9 billion transactions in a single day — the highest ever recorded for an EVM-compatible blockchain.

The mainnet launched on September 2, 2025 alongside the SOMI token. The token economics reflect a network designed for sustainability:

  • Fixed supply: 1 billion SOMI tokens with no inflation mechanism
  • Deflationary pressure: 50% of all gas fees are permanently burned
  • Validator requirements: 5 million SOMI minimum stake to operate a node
  • Distribution: 27.93% community, 27.35% ecosystem, 15% launch partners, 11% team, 3.58% advisors
  • Vesting: 48-month schedule with 16% unlocked at TGE

The burn mechanism is worth highlighting. In a high-throughput network processing millions of transactions daily, even sub-cent fees accumulate rapidly. With half of those fees destroyed, SOMI's circulating supply faces meaningful deflationary pressure as network usage grows.

The Competitive Landscape: Not a Solo Race

Somnia isn't the only project chasing seven-figure TPS. The high-performance blockchain race in 2026 includes several serious contenders:

Solana with Firedancer remains the incumbent to beat. The Firedancer validator client demonstrated 1 million TPS in controlled environments, but real-world Solana throughput sits at 3,000–5,000 TPS as of early 2026. Full Firedancer adoption across the validator set — combined with the planned Alpenglow consensus upgrade — could push production numbers significantly higher, though realistic timelines point to 2027–2028 for peak performance.

MegaETH promises ultra-low block times as an Ethereum L2, but remains unreleased as of March 2026. Its approach differs fundamentally from Somnia's: where Somnia builds a sovereign L1, MegaETH inherits Ethereum's security model at the cost of L2 complexity.

Monad targets EVM-compatible high performance through parallel execution, aiming for 10,000 TPS on its own L1. While more modest in throughput targets than Somnia, Monad's parallel execution approach represents a different engineering trade-off.

What distinguishes Somnia is the combination of L1 sovereignty, full EVM compatibility, and throughput numbers that remain unmatched in production environments. Whether those benchmarks translate to sustained real-world performance under diverse workloads is the question the market will answer in 2026.

The 2026 Roadmap: From Infrastructure to Applications

With core infrastructure live, Somnia's 2026 roadmap pivots sharply toward application enablement. Three themes dominate:

Reactive smart contracts represent the most technically ambitious addition. Rather than relying on external triggers (oracles, keepers, cron jobs), reactive contracts can autonomously respond to on-chain events in real time. For gaming and social applications, this eliminates the latency and reliability issues of off-chain automation.

Prediction markets at scale leverage Somnia's throughput to enable what the team calls a "market of markets" — hyper-granular prediction markets that would be economically impossible on slower chains. When creating and resolving a market costs fractions of a cent, anyone can spin up a market around any event, from esports match outcomes to streamer milestones.

AI agent integration positions Somnia as infrastructure for autonomous on-chain agents. With sub-second finality and negligible fees, AI agents can execute complex multi-step strategies without the latency or cost constraints that limit agent behavior on most current chains.

The January 2026 Dreamathon — Somnia's metaverse-focused incubator — signals the team's bet that the first killer use cases will emerge from gaming and virtual worlds, the same domain where Improbable built its original expertise.

What to Watch

Somnia has delivered an impressive technical foundation, but several open questions remain. Can the network sustain million-TPS performance under heterogeneous workloads, not just benchmarked token transfers? Will the validator set decentralize sufficiently, or will the 5-million-SOMI staking requirement concentrate power among well-funded operators? And perhaps most critically, will developers and users actually show up — or will Somnia join the growing list of technically superior chains that struggle for adoption?

The answers will unfold throughout 2026 as the ecosystem matures from testnet refugees and early adopters into (potentially) a mainstream application platform. For builders evaluating where to deploy latency-sensitive applications, Somnia represents the most aggressive bet on raw performance in the current EVM landscape.

For developers building on high-performance EVM chains, BlockEden.xyz provides reliable RPC infrastructure and API services designed for demanding workloads. Explore our API marketplace to find the tools that match your throughput requirements.