Skip to main content

10 posts tagged with "EVM-compatible"

EVM-compatible blockchains

View all tags

Inside Sei V2's Parallel EVM: How 12,500 TPS Ships Today While Monad and MegaETH Race to Catch Up

· 10 min read
Dora Noda
Software Engineer

In the parallel-EVM arms race that will define Layer 1 competition through 2026, one chain is shipping while the others are still benchmarking.

Sei Network's V2 mainnet has been quietly running optimistic parallel execution at a theoretical ceiling of 12,500 transactions per second with sub-400 millisecond finality since late 2024 — a full year before Monad's November 2025 mainnet launch and while MegaETH continues its specialized-node experiments. The question is no longer whether parallel-EVMs work. It's which architecture survives contact with the real workloads that come after the launch hype fades.

A 17,000-character technical teardown from Web3Caff Research traces Sei's path from a niche Cosmos SDK order-book chain in 2022 to the first production parallel-EVM L1, dissecting three interlocking innovations that make the throughput claims credible: optimistic parallel execution, Twin Turbo consensus, and SeiDB. But the same teardown also reveals the canonical gap every "high-TPS L1" eventually confronts — measured mainnet throughput sits at roughly 2,500-3,500 TPS under real dApp load, well below the 12,500 ceiling. Understanding what closes that gap, and what Sei's upcoming Giga upgrade does to push the ceiling toward 200,000 TPS, is the real story of where blockchain infrastructure is heading.

The Three-Pillar Architecture That Got Sei to Mainnet First

Sei V2's performance does not come from a single breakthrough. It comes from three components engineered to compose, each attacking a different bottleneck in the legacy EVM stack.

Optimistic parallel execution is the headline feature, and it differs in a subtle but important way from Solana's Sealevel scheduler. Sealevel requires transactions to declare upfront which storage slots they intend to read or write, forcing developers to design around explicit dependency graphs. Sei's runtime takes the opposite approach: it speculatively executes all transactions in a block in parallel, tracks which state each transaction touches, and only re-executes the conflicting subset sequentially. Non-conflicting transactions clear in a single pass. The recursion continues until no unaccounted conflicts remain.

The trade-off is that optimistic execution wastes work when conflict rates spike — high-contention activity like a popular NFT mint or a single-pool DEX flash loan can degrade throughput as transactions stack up for re-execution. Monad uses a similar optimistic approach, while Aptos and Sui's Move-based parallel execution leans on resource-oriented programming to make conflicts statically analyzable. Each represents a different bet on how programmers will build at scale.

Twin Turbo consensus is what compresses Tendermint's notorious 6-second block times down to under 400 milliseconds. It's not a wholesale replacement of the underlying BFT engine — it's a suite of optimizations including aggressive timeout tuning, intra-block pipelining of proposal and voting phases, and a tight integration with the parallel-execution layer that lets transaction inclusion decouple from execution ordering. The result is single-slot finality at speeds previously associated with permissioned ledgers, while retaining the decentralization properties of a public BFT chain.

SeiDB is the least glamorous but arguably most consequential piece. The default Cosmos SDK uses an IAVL+ tree for state storage, which generates pathological disk I/O patterns under high write volume. SeiDB replaces this with a custom backend that splits state into two tiers — a write-optimized active layer and a read-optimized archive — reducing disk IOPS by roughly 10x according to Sei Labs' published benchmarks. When you're targeting tens of thousands of TPS, storage subsystem performance is no longer a footnote. It's the wall that breaks throughput before CPU does.

Geth Compatibility: The Strategic Choice That Mattered

One architectural decision separates Sei V2 from Monad in a way that compounds over time: Sei imports Geth, the canonical Go implementation of the Ethereum Virtual Machine, directly into its node binary. Any Solidity smart contract deploys without modification. MetaMask, Hardhat, and Foundry work natively. Audit firms, tooling providers, and indexers built for Ethereum mainnet require zero adaptation.

Monad chose differently. Its team rebuilt the EVM from scratch in C++ to extract additional performance, accepting the long-tail cost of bytecode-level edge cases that may behave differently from canonical Ethereum. The bet pays off if Monad's performance advantage holds over time. It hurts if any of the thousands of audited Solidity contracts in production exhibit subtle execution differences when ported.

Sei's Geth-import strategy is what made the V2 launch survivable as a live network. It also made Sei the natural target for institutional deployments where compatibility risk is unacceptable — most visibly in January 2026, when Ondo Finance deployed USDY, the largest tokenized U.S. Treasury product by TVL, onto Sei mainnet. A tokenized Treasury issuer cannot tolerate edge-case EVM divergence. Geth-imports remove the question entirely.

The Mainnet Reality: 2,500 TPS, Not 12,500

The empirical benchmarks tell a more complicated story than the marketing. Sei's mainnet currently sustains roughly 2,500 to 3,500 TPS under real dApp load — Astroport (the network's primary DEX), White Whale, Seiyans NFT activity, and the growing perpetual-futures market launched by Astroport Perps in December 2025. That figure sits well below the 12,500 TPS theoretical ceiling.

This gap is not a Sei-specific failure. It is the canonical gap every high-throughput L1 confronts when synthetic benchmarks meet production conditions. Three factors compress real throughput:

  • Conflict rates from real applications. Optimistic parallel execution rewards workloads with diverse state access patterns and punishes hot-state contention. A single dominant DEX pool routes most volume through a handful of pairs, and trades on the same pair conflict by definition.
  • Storage IOPS at saturation. Even with SeiDB's 10x improvement over IAVL, sustained write throughput above ~10,000 TPS pushes commodity NVMe drives into queue-depth territory where latency tail spikes degrade block times.
  • Validator network heterogeneity. Production validator sets span continents, latency varies, and Twin Turbo's tight timeouts assume favorable network conditions that don't always hold at the long tail.

Sei's TVL of roughly $560 million in DeFi (as of recent disclosures, with broader TVL exceeding $1 billion in June 2025) and 28 million active addresses tell the more important story: the chain is being used. The question is whether it can be used harder without breaking, which is exactly what the Giga upgrade aims to answer.

Giga: The 50x Bet That Defines Sei's 2026

In December 2024, Sei Labs published the Giga whitepaper — a roadmap that, if delivered, would reset the entire L1 throughput conversation. Giga targets 5 gigagas per second of execution, which translates to approximately 200,000 to 250,000 TPS while preserving sub-400 millisecond finality. Devnet validation in 2025 hit 5.2 gigagas per second (~148,900 TPS) and 211 millisecond time-to-finality across a 20-validator set distributed across the U.S., Europe, and Asia Pacific.

Giga rebuilds three subsystems:

  • Autobahn consensus introduces multi-proposer block production, letting multiple validators propose disjoint transaction sets simultaneously rather than serializing through a single leader. This attacks the proposer bandwidth ceiling that limits single-leader BFT chains.
  • Asynchronous execution decouples transaction execution from block finalization entirely, letting the consensus layer commit ordering at one cadence while execution catches up at another. The pattern echoes what MegaETH attempts with specialized sequencer/prover/full-node roles.
  • A rebuilt EVM replaces the imported Geth with a performance-optimized implementation tuned for Sei's specific access patterns — closing the loop on the exact compatibility-vs-performance trade-off Sei avoided in V2.

The progressive mainnet rollout is scheduled throughout 2026, with the SIP-3 upgrade laying groundwork and full Giga deployment targeted by mid-year. If Sei pulls it off, the chain leapfrogs Monad's 10,000 TPS ceiling and approaches Web2-level transaction performance. If it doesn't, Sei's Geth-compatibility advantage gets eaten by Monad's mainnet maturity through the second half of 2026.

What This Means for the L1 Competitive Landscape

The parallel-EVM category is no longer a research bet. It is an active competition with three live mainnets, distinct architectural choices, and visible institutional adoption. Sei has the production lead and the Giga roadmap. Monad has $269 million in fresh capital from its November 2025 ICO (85,820 participants, hosted by Coinbase) and a custom EVM built for raw speed. MegaETH ships node specialization that bets on a different scaling decomposition. Solana's Sealevel keeps grinding out 3,000-5,000 sustained TPS with $9B+ TVL but remains non-EVM.

The Move-based chains — Aptos and Sui — sit in a parallel category, betting that resource-oriented programming makes parallel execution strictly better than any retrofit onto Solidity semantics. They've shipped to mainnet and have working ecosystems, but the gravitational pull of EVM tooling makes the parallel-EVM lane the more contested one.

What the Sei deep dive ultimately reveals is the architectural ceiling every parallel-execution chain will eventually hit: above approximately 10,000 sustained TPS, storage IOPS becomes the binding constraint, not VM parallelism. This is why Giga puts as much weight on the storage layer redesign as on consensus. It's also why the next frontier of L1 scaling — already visible in early 2026 conversations — is shifting from "parallelize the VM harder" to state-sharding combined with data-availability composition. Sei is positioned to lead that transition because it has already shipped one parallel-EVM and is iterating on the second.

The Infrastructure Layer Underneath

For developers building on Sei, Monad, or any parallel-EVM in 2026, the infrastructure question gets more nuanced than it was on legacy Ethereum. Optimistic execution means transaction ordering depends on conflict resolution, which means RPC providers need to expose the right primitives for builders, sequencers, and indexers to make sense of execution traces. Sub-400ms finality is meaningless if your indexer is 30 seconds behind, and 12,500 TPS amplifies any reliability gap in the read path.

The chains that win the parallel-EVM era will be the ones whose infrastructure ecosystem keeps up — RPC reliability, archive node coverage, indexer freshness, and the kind of multi-chain abstraction layer that lets a developer treat Sei, Monad, and Solana as substitutable rather than separate integrations.

BlockEden.xyz provides enterprise-grade RPC and indexing infrastructure across Sei, Solana, Sui, Aptos, Ethereum, and the broader L1 landscape. As parallel-EVMs mature from testnet promises to production workloads, explore our API marketplace to build on infrastructure designed for the throughput frontier.

The Bottom Line

Sei V2 is the proof point that parallel-EVMs can ship to mainnet, support real institutional deployments like Ondo's USDY, and run live workloads at 2,500-3,500 sustained TPS — not the 12,500 TPS marketing number, but a production figure that already exceeds Solana's sustained throughput while running unmodified Solidity contracts. Whether Sei holds that lead depends on Giga delivering its 5 gigagas-per-second target before Monad matures and MegaETH proves its specialized-node thesis.

The 2026 throughput race is no longer about benchmarks. It's about which architecture composes cleanly with the storage, consensus, and DA primitives that define the next phase of L1 design. Sei got there first. The next twelve months decide whether first-mover advantage in parallel execution converts into durable category leadership.

Sources

Monad vs MegaETH: The High-Performance EVM Showdown Reshaping Q2 2026

· 12 min read
Dora Noda
Software Engineer

For three years, the high-performance EVM was a deck of pitch slides. By April 2026, it is two live mainnets, roughly half a billion dollars in early TVL, and an open question that will define the next two years of Ethereum-aligned scaling: does the future belong to a parallel L1 that ditches Ethereum's settlement layer, or to a real-time L2 that doubles down on it?

Monad went live on November 24, 2025 with a 10,000 TPS parallel EVM, sub-second finality, and one of the largest token airdrops of the cycle — $105 million distributed to roughly 76,000 wallets. Eleven weeks later, on February 9, 2026, MegaETH cut its public mainnet over with a different bet entirely: a single-sequencer L2 streaming transactions at 10ms blocks, sub-millisecond latency, and a stated ceiling of 100,000 TPS. Both are EVM-compatible. Both are backed by tier-one capital. Both ship today. They could not be more philosophically opposed.

This is not the parallel-EVM-vs-monolithic-L1 debate of 2024. It is the rare case where two mainnets ship within a quarter of each other, target the same Ethereum developer base, and force a choice that cannot be hedged: do you optimize for Solana-class throughput on your own settlement, or for Web2-class latency anchored to Ethereum?

Two Mainnets, Two Theses

Monad's pitch is structural. It is an L1 — its own consensus, its own data availability, its own validator set — engineered around four coupled optimizations: MonadBFT (a HotStuff derivative with single-round speculative finality), deferred execution, optimistic parallel execution, and MonadDb. The result is 400ms blocks and 800ms time-to-finality, with the chain's economic security entirely independent of Ethereum.

MegaETH's pitch is architectural. It is an L2 — settling to Ethereum, posting data to EigenDA — but it abandons the multi-sequencer convention that defines Optimistic and ZK rollups. A single sequencer node, provisioned with 100-core CPUs and 1–4 TB of RAM, orders and executes transactions through what the team calls Streaming EVM: an asynchronous pipeline that emits transaction results continuously rather than batched into blocks. The user-perceived latency is sub-millisecond. The throughput ceiling, claimed at 100,000 TPS, sat at roughly 50,000 TPS at launch with stress tests previously hitting 35,000 sustained TPS.

Both architectures break with EVM tradition. Monad keeps the trust model familiar — a validator set, BFT consensus, on-chain state — but rebuilds the execution and storage stack from scratch. MegaETH keeps Ethereum as the trust anchor but centralizes the hot path into a single high-spec node and reintroduces the latency profile of a Web2 backend.

The question is not which is technically more impressive. It is which set of trade-offs developers will pay for.

The Architecture That Drives Each Bet

Monad: Decoupled Pipelines on a New L1

The headline number for Monad is 10,000 TPS, but the more interesting figure is 400ms — the block time. That number is not a consequence of faster hardware; it is a consequence of separating consensus from execution.

In a traditional EVM chain, validators must reach agreement on a block and execute every transaction in it before producing the next block. A slow contract call can stall the entire pipeline. Monad decouples these stages: MonadBFT validators agree on transaction ordering first, and the execution engine processes the previous block asynchronously while the next round of consensus is already underway.

The execution engine itself is optimistic. Monad assumes most transactions in a block touch independent state and runs them in parallel across CPU cores. When a conflict surfaces — two transactions writing to the same account, for instance — the affected transactions are re-executed and merged. The empirical result, reported across Monad's testnet phase and early mainnet operation, is that the parallel speedup is meaningful for typical DeFi workloads where transactions tend to cluster around a few popular contracts but most state is independent.

MonadDb completes the picture. Standard EVM clients use general-purpose key-value stores like LevelDB or RocksDB; Monad ships a custom database tuned for the access patterns of an executing EVM. The combined effect — MonadBFT plus deferred execution plus parallel execution plus MonadDb — is what gets the chain to 10,000 TPS at 400ms blocks without trading away EVM compatibility.

MegaETH: One Sequencer, Many Specialized Nodes

MegaETH starts from a different question: if we accept Ethereum as the settlement layer, how fast can a single L2 execution environment go?

The answer, as the team has built it, requires breaking the symmetry of Ethereum nodes. MegaETH separates roles into specialized node types — sequencer nodes, prover nodes, full nodes — and gives the sequencer extreme hardware: 100-core CPUs, 1–4 TB RAM. This single sequencer orders transactions, executes them through a "hyper-optimized" EVM, and emits results in a streaming fashion rather than waiting for full block completion.

The 10ms block time and sub-millisecond user latency are downstream of this design. So is the centralization risk. MegaETH is explicit that the sequencer is a single point — the MEGA token's primary security role is staking by sequencer operators, with rotation and slashing intended to keep behavior honest. EigenDA handles data availability, so users can reconstruct state independently if the sequencer fails or censors. But during normal operation, one machine sees every transaction first.

This design has a clean theoretical advantage: latency dominates throughput in Web2-style applications. A real-time order book, a multiplayer game tick, an AI agent loop — all of these care more about the round-trip time of a single transaction than about the chain's peak throughput. MegaETH is betting that a category of applications exists which has been waiting for blockchains to feel like servers, and that those applications will accept a more centralized hot path in exchange for that latency.

TVL, Token Performance, and the Early Ecosystem Battle

The dollars do not yet vindicate either side. As of mid-April 2026:

  • MegaETH has accumulated approximately $110.8 million in TVL since its February 9 launch — about ten weeks of compounding from a launch-day base of $66 million.
  • Monad has crossed $355 million in TVL, with daily transactions running between 1.7 million and 2.1 million through March 2026 — a five-month head start showing.

On a TVL-per-week basis, the two are running closer than the absolute numbers suggest, and MegaETH's L2 status means a portion of its TVL is bridged Ethereum collateral that can re-deploy quickly as new venues open.

The token markets are less kind to Monad in the short term. MON trades at $0.03623 against an all-time high of $0.04883 set during the airdrop euphoria — roughly 28% off ATH but still 114% above its low. The next major MON unlock is scheduled for April 24, 2026, which traders are watching as a potential supply-side test. MegaETH's MEGA token mechanics are more constrained at this stage: the token's primary in-protocol use is sequencer staking and rotation, which limits how much float reaches secondary markets in early months.

On the dApp side, both ecosystems have aggressively courted Ethereum-native protocols. Aave proposed deploying v3.6 or v3.7 to Monad with a mid-to-late March 2026 schedule. Balancer V3 went live on Monad in March. Allora's prediction inference layer integrated on January 13. PancakeSwap brought roughly $250 million of TVL when it launched on Monad in December.

MegaETH's cleanest early win was joining Chainlink SCALE on February 7, 2026 — two days before mainnet — which immediately put dApps like Aave and GMX in reach of an oracle pipeline tied to nearly $14 billion of cross-chain DeFi assets. The bet there is leverage: rather than wait for protocols to deploy organically, plug into the connective tissue that already routes liquidity across chains.

The Developer Decision That Actually Matters

For most Ethereum developers, both chains are EVM-equivalent enough that "porting" means redeploying contracts and updating an RPC URL. The deeper choice is about which performance profile your application needs and which trust assumption your users will accept.

Choose Monad if your application is throughput-bound and value-bearing. A perp DEX matching at thousands of orders per second, an on-chain CLOB, a high-frequency lending market — these benefit from 10,000 TPS at 800ms finality and from Monad's L1 trust model where the chain's security is not delegated to a single sequencer. The cost is bridging: assets and users must move from Ethereum to Monad explicitly, and Monad's economic security is its own validator set rather than Ethereum's.

Choose MegaETH if your application is latency-bound and Ethereum-aligned. Real-time games, AI agent loops with tight feedback, order books that need 10ms ticks, microtransaction-heavy consumer apps — these benefit more from sub-millisecond latency than from raw TPS. Settlement to Ethereum means assets stay denominated in the L1's security model and bridging is cheaper. The cost is the single-sequencer trust assumption during normal operation.

The honest answer for many teams is both. The two chains are not fighting for the same application categories so much as drawing the boundary of what high-performance EVM means. Monad anchors the L1 throughput end. MegaETH anchors the L2 latency end. The middle — and most existing DeFi lives in the middle — will choose by which numbers matter more for the specific workload.

Can the High-Performance EVM Segment Sustain Two Winners?

The instinct after every L1 race of the last cycle is to expect consolidation. The 2021–2024 wave of "Ethereum killers" produced one durable winner outside Ethereum (Solana) and a long tail of chains that never escaped low single-digit billion TVL. The high-performance EVM segment in 2026 looks structurally different.

First, the architectural divergence is real, not cosmetic. Monad and MegaETH are not two attempts at the same idea with different tokenomics. An L1 with parallel execution and an L2 with a centralized streaming sequencer are not substitutes for one another at the workload level. Capital and developers can — and likely will — split.

Second, both chains target the EVM developer pool, which is by an enormous margin the largest in crypto. Roughly 90% of blockchain developers work on at least one EVM chain. Even modest fractional capture supports two viable ecosystems.

Third, the competitive set is wider than just these two. Solana continues to dominate the parallel execution conversation outside the EVM. Sei's Giga upgrade, with 200k TPS on devnet and Autobahn consensus rolling through 2026, is a third high-performance EVM contender. Hyperliquid has demonstrated that a vertically integrated chain optimized for one use case (perpetuals) can dominate without competing on general-purpose throughput. The narrative that "the high-performance EVM" will collapse to one winner mistakes a category for a single market.

The more interesting question is which of these chains becomes the default for net-new Ethereum-aligned development by the end of 2026 — the one builders reach for first when latency or throughput rules out Ethereum mainnet. On current trajectory, Monad has the lead in DeFi capital and developer infrastructure breadth; MegaETH has the lead in the consumer and agent-facing latency narrative. Both can be true simultaneously for at least the next year.

What to Watch Through 2026

Three signals will tell us how this plays out:

  1. TVL composition, not just total. Monad needs to show that capital is sticky rather than airdrop-rotated, and that protocols are deploying production volumes rather than testing. MegaETH needs to show that bridged capital converts to active strategies rather than parking.
  2. First-class native applications. Both ecosystems are still mostly populated by ports of Ethereum incumbents. The chain that produces a category-defining native application — something that could only exist there — will pull ahead in the developer mindshare race that the TVL numbers cannot capture.
  3. Sequencer decentralization on MegaETH; validator economics on Monad. MegaETH's single-sequencer model is honest about its trade-off but will need a credible decentralization roadmap to win institutional and risk-averse capital. Monad's validator set economics, particularly through the April 24 unlock and subsequent vesting tranches through 2029, will determine whether MON's security budget holds up against the chain's growth.

The high-performance EVM was a thesis for years. In Q2 2026, it became a market with two live products and a clarifying question: what kind of speed matters? Whichever side gives the better answer for the workloads of the next cycle — DeFi at scale or consumer-grade real-time apps — will set the template that the rest of the EVM ecosystem chases for the remainder of the decade.

BlockEden.xyz provides enterprise-grade RPC and indexing infrastructure across the EVM ecosystem and major non-EVM chains, supporting builders evaluating where to deploy as high-performance EVM matures. Explore our API marketplace to build on the infrastructure your application's latency and throughput profile actually needs.

Sources

Movement Labs M2: EVM + Move Hybrid Lets Solidity Inherit Resource-Type Safety

· 9 min read
Dora Noda
Software Engineer

Smart contract exploits drained more than $3.1 billion from DeFi in the first half of 2025 alone — already eclipsing 2024's full-year toll of $2.85 billion. Reentrancy attacks accounted for $420 million of those Q3 losses. Integer overflow bugs continue showing up in audits. The Penpie protocol lost $27 million to a single reentrancy in 2024. Every one of these vulnerabilities is a direct consequence of how the Ethereum Virtual Machine handles assets and function dispatch — and every Solidity developer knows it.

Movement Labs is betting that developers don't have to choose between Ethereum's $50 billion liquidity moat and Move's compile-time safety guarantees. Its M2 chain — the first Move VM-based Layer 2 for Ethereum, settled on Celestia and now plugged into Polygon's AggLayer — claims a way to deploy unmodified Solidity bytecode into a Move execution environment. If it works, it's the most ambitious "safety upgrade" pitch in Ethereum's L2 era. If it doesn't, it joins a long list of hybrid VMs that appealed to neither constituency.

Delete Three Forever: Why Only One of MegaETH, Monad, Eclipse, or Berachain Will Matter by 2027

· 11 min read
Dora Noda
Software Engineer

Four chains. One seat at the table. In the last eighteen months, Monad, MegaETH, Eclipse, and Berachain have each promised to make Ethereum feel instant — and each has raised hundreds of millions to prove it. By Q2 2026, the marketing has cooled and the metrics are talking. Monad's TVL cleared $355M while its daily fees struggled to break $3,000. MegaETH shipped a mainnet built for 100,000 TPS and spent its first day averaging 29. Eclipse cut 65% of staff and watched ecosystem TVL collapse 95% from peak. Berachain's flagship integration, Dolomite, quietly trimmed its DAO-governed BERA allocation from 35% to 20%.

Ethereum's Glamsterdam Hard Fork Explained: How Parallel Execution and ePBS Target 10,000 TPS

· 10 min read
Dora Noda
Software Engineer

Right now, two block builders assemble more than 90% of every Ethereum block. Every transaction waits in a single-file line, no matter how many CPU cores a validator has. And gas prices still reflect benchmarks set years ago on hardware that no longer exists.

Glamsterdam, Ethereum's next hard fork targeting the first half of 2026, is designed to dismantle all three problems at once. With a gas-limit jump from 60 million to 200 million, a new parallel-execution primitive, and proposer-builder separation baked directly into the consensus layer, the upgrade represents the most aggressive structural overhaul since The Merge. If it ships on schedule, Ethereum's Layer 1 could process roughly 10,000 transactions per second — about ten times today's throughput — while cutting gas fees by nearly 79%.

Here is what is actually changing, why it matters, and where the risks hide.

Sei Just Deleted Hundreds of Thousands of Lines of Code — And That Might Be the Smartest Move in Crypto

· 7 min read
Dora Noda
Software Engineer

On April 6, Sei Network will flip a switch that no major Layer 1 has ever flipped before. The chain will disable its entire Cosmos stack — CosmWasm smart contracts, IBC interoperability, native oracle, bech32 addresses — and emerge on the other side as a pure EVM chain. Coinbase has already announced it will suspend SEI deposits and withdrawals during the April 6–8 migration window. Holders of USDC.n who haven't converted to native USDC risk losing access to roughly $1.4 million in assets.

This isn't a minor upgrade. It's an architectural amputation — and it could be the most consequential infrastructure decision any blockchain makes in 2026.

Somnia's Mainnet Bet: Can a 400K TPS Chain Finally Make On-Chain Gaming Real?

· 8 min read
Dora Noda
Software Engineer

Every new Layer 1 promises speed. Somnia promises an entirely different kind of blockchain — one where millions of players share a single on-chain world in real time, where digital assets flow between metaverses, and where creators earn royalties on every remix of their work.

Six months after its September 2025 mainnet launch, the Improbable-backed chain is processing 8 million transactions per day. But the gap between its theoretical 1 million TPS ceiling and its observed 25,000 TPS peak raises the question every high-performance chain must eventually answer: does the throughput matter if no one is using it yet?

Monad Mainnet Is Live: How a 10,000 TPS Parallel EVM Chain Rewrites the Layer-1 Playbook

· 7 min read
Dora Noda
Software Engineer

What if an Ethereum-compatible blockchain could match Solana's speed without forcing developers to learn a new language? After three years of engineering and a $244 million war chest led by Paradigm, Monad answered that question on November 24, 2025 — and the market has been recalibrating ever since.

BNB Chain's Fermi Upgrade: A Game-Changer for Blockchain Speed and Efficiency

· 8 min read
Dora Noda
Software Engineer

BNB Chain just fired a shot across the bow of every Layer 1 blockchain. On January 14, 2026, the Fermi hard fork will slash block times to 0.45 seconds—faster than a human blink—transforming BSC into a settlement layer that rivals traditional financial infrastructure. While Ethereum debates scaling roadmaps and Solana recovers from congestion events, BNB Chain is quietly building the fastest EVM-compatible blockchain in existence.

This isn't just an incremental upgrade. It's a fundamental reimagining of what's possible on a proof-of-stake network.