Skip to main content

294 posts tagged with "Ethereum"

Articles about Ethereum blockchain, smart contracts, and ecosystem

View all tags

Ethereum Economic Zones: Gnosis and Zisk's Plan to End L2 Fragmentation

· 10 min read
Dora Noda
Software Engineer

Twenty-plus Ethereum rollups now secure roughly $40 billion in value, and almost none of them can talk to each other in the same breath. A user with ETH on Base still has to bridge to buy an NFT on Optimism. A DeFi position on Arbitrum cannot atomically settle against collateral sitting on Scroll. The scaling roadmap that was supposed to make Ethereum feel like one computer instead shattered it into a hundred islands.

On March 29, 2026, Gnosis co-founder Friederike Ernst and Zisk founder Jordi Baylina walked on stage at EthCC in Cannes and proposed a different frame. Not another bridge. Not another shared sequencer committee. An Ethereum Economic Zone — pronounced "easy" — where rollups compose synchronously with mainnet and with each other inside a single transaction, co-funded by the Ethereum Foundation, and backed by a real-time ZK proving stack that took two years to build.

It is the most ambitious attempt yet to answer a question the L2 era has been dodging: what if the problem was never bandwidth, but economic coordination?

Intent-Based Wallets: The Endgame of Account Abstraction

· 12 min read
Dora Noda
Software Engineer

For fifteen years, using crypto has meant one deeply strange ritual: opening a wallet, scrutinizing a hex-encoded transaction, manually funding an account with the right gas token, and signing with a key you are personally responsible for never losing. By 2026, that ritual is on the way out — and the wallets leading the charge are not asking users to sign transactions at all. They are asking users what outcome they want.

That shift, from transaction-based wallets to intent-based wallets, is the long-promised endgame of account abstraction. It is being assembled right now out of three apparently unrelated pieces: ERC-4337 smart accounts, EIP-7702 EOA programmability, and a $10B+ wallet-as-a-service market in which Coinbase, Privy (now part of Stripe), Dynamic (acquired by Fireblocks), Safe, and Biconomy are racing to build the default consumer surface for Web3. Put them together and you get a wallet that finally behaves like Apple Pay: you express a desire, someone else figures out the plumbing, and the blockchain disappears.

The Final Form: Users Specify Outcomes, Not Transactions

The mental model for a 2020-era crypto wallet was a transaction factory. You selected a chain, chose a gas token, set slippage, reviewed calldata, and signed. Every UX paper cut — wrong network, insufficient ETH for gas, a signature for an approval plus a second signature for the swap — came from the fact that the user was the one operating the low-level machine.

Intent-based architectures invert that model. As Anoma's research on intent-centric topologies frames it, an intent is a partial state change expressing a preference, signed by the user, that a solver network competes to fulfill. CoW Protocol has run this playbook for years as a batch-auction DEX where users sign "sell X for at least Y" and solvers do the routing. Flashbots' SUAVE takes the same idea down into block building. Cross-chain intent protocols are actively replacing bridges, turning "bridge from Arbitrum to Base" into "have these tokens on Base in under a minute."

The critical point for wallets is this: once an account is programmable enough to accept conditional, multi-step instructions and hand them off to a solver, the UI no longer has to look like Etherscan. It can look like a chat box, a Shopify checkout, or a one-tap "Buy PENGU" button inside a consumer app. The wallet becomes the place where intents get authenticated; something else does the executing.

ERC-4337 Built the Execution Pipes

The first enabling piece is ERC-4337, which went live on Ethereum mainnet on March 1, 2023, and quietly became the execution substrate for most of today's smart wallets. Instead of sending a transaction from an externally owned account, a user signs a UserOperation — a richer object that specifies validation rules, an optional paymaster, and the calls to execute. Bundlers package these into real transactions and send them to a canonical EntryPoint contract. Alchemy's overview of account abstraction walks through this pipeline in detail.

Three capabilities fall out of this design, and together they make intent-based UX actually shippable:

  • Gas abstraction via paymasters. A paymaster contract can agree to pay gas on the user's behalf, sponsored by the application or swapped from any ERC-20 the user holds. The experience is a user with zero ETH transacting immediately after account creation — the pattern that Nadcab's 2026 gas abstraction guide projects will become an invisible default by 2027.
  • Session keys. Rather than reauthorizing every action, a user can grant a scoped, time-limited key — "this dApp may spend up to 100 USDC on trades on Base for the next hour." This is the primitive that makes on-chain games, AI agents, and high-frequency DeFi usable without a signature popup every 30 seconds.
  • Modular validation. Because validation is expressed in contract code, not hard-coded by the protocol, wallets can swap in passkeys, multisig logic, social recovery, or fraud checks without changing the underlying account.

ERC-4337 by itself, however, had a structural problem: smart accounts are separate contracts from the ordinary EOAs most users already had. Migrating 200M+ existing addresses into brand-new accounts was never going to happen cleanly. That is the gap EIP-7702 closed.

EIP-7702 Upgraded Everyone's Wallet Overnight

Ethereum's Pectra upgrade launched on May 7, 2025, and introduced EIP-7702 — a deceptively simple change that lets an ordinary EOA temporarily delegate its code to a smart contract. The private key still controls the account, but while the delegation is active, the EOA behaves like a smart wallet: it can batch calls, use paymasters, whitelist session keys, and plug into ERC-4337 infrastructure. Turnkey's deep dive on the 4337-to-7702 journey captures the key insight: the two standards are complementary, not competing.

The effect on adoption is dramatic. MetaMask, Ledger, Ambire, and Trust Wallet have shipped EIP-7702 support, and Ledger has rolled it out across Flex, Stax, Nano Gen5, Nano X, and Nano S Plus hardware. BuildBear's ERC-4337 vs EIP-7702 comparison notes that most major wallet providers are expected to follow through 2025 and into 2026, which is exactly what the on-chain data is now showing.

In practical terms, 7702 means users do not have to know they are getting a smart wallet. Their existing address keeps working; it just starts doing more. That is the quiet precondition for a mass-market intent-based UX: you cannot ask hundreds of millions of users to migrate, so you upgrade the account they already have.

The $10B+ Wallet-as-a-Service Battle

If ERC-4337 and EIP-7702 are the protocol layer, the battle for the product layer is being fought in wallet-as-a-service. This is where consumer-grade onboarding, passkeys, embedded UIs, and intent routing get packaged into an SDK that any app can drop in.

The leaders each come from a different angle:

  • Coinbase Smart Wallet is the reference consumer implementation. Coinbase's announcement and Base's rollout plan describe a wallet with passkey-based authentication, gasless transactions by default, and cross-chain deployment — 8 networks at launch and the same contract address across 248 chains via the Safe Singleton Factory. It is effectively trying to become the "Sign in with Apple" of Web3.
  • Privy, acquired by Stripe in June 2025, is now fused with Bridge to unify crypto and fiat payments, pushing embedded wallets deep into mainstream fintech flows. Openfort's Privy alternatives guide tracks how this acquisition reshaped the consumer-crypto landscape.
  • Dynamic, acquired by Fireblocks, is focusing on developer experience and multi-chain adapters, positioning embedded wallets as an enterprise building block.
  • Safe and Biconomy are competing on the modular-account side, particularly around ERC-7579 — a minimal standard for modular smart accounts co-developed by Rhinestone, Biconomy, ZeroDev, and OKX that lets validators, executors, hooks, and fallback handlers plug into any compliant account.
  • Aggregators such as WAGMI, Web3Modal, RainbowKit, and Reown have already integrated smart wallets at the connector layer, meaning most new dApps are intent-capable by default.

The strategic prize is the identity and intent layer for Web3. Whoever owns the wallet owns the funnel for every transaction, payment, and agent action a user initiates. Openfort's top 10 embedded wallets report and the wave of Stripe/Fireblocks M&A make it clear that incumbents now treat this as strategically important — and finite.

The Four Primitives That Make the Intent Wallet Real

Strip away the marketing and there are four concrete primitives behind "wallets that hide the blockchain."

  1. Native passkeys (EIP-7212). A precompile for secp256r1 signature verification lets wallets authenticate with the same WebAuthn passkeys iPhones, Android devices, and YubiKeys already use. That removes seed phrases as the default recovery model and replaces them with device-secure, phishing-resistant credentials users already trust.
  2. Session keys (commonly structured as ERC-7579 validator modules). Scoped, revocable permissions underwrite one-tap gameplay, recurring payments, and agent autonomy without turning the signature popup into spam.
  3. Gas abstraction (ERC-4337 paymasters). Apps sponsor gas, users pay fees in the stablecoin they already hold, and "I need to buy ETH first" stops being a gating step.
  4. Batched execution (ERC-7821). A single user action can contain an approve + swap + bridge + stake sequence that either all happens or none of it does, eliminating the half-completed multi-step disasters that define crypto UX today.

Combine these four with a solver network and you have the ingredients for an actual intent-based wallet: the user says "swap $500 of USDC for ETH on whatever chain is cheapest," and the wallet handles bridging, gas, approval, and execution under one authorization.

Why This Is Also a Security Story

Intent architectures are not just a UX upgrade. They are also a security pattern, which matters more than usual given the $25M Resolv hack reporting from March 2026 that put intent-layer safety on investors' radar.

Two shifts stand out. First, because intents are expressive declarations of desired end states, wallets and solvers can simulate and reason about them before execution — rejecting anything whose outcome would violate a policy, rather than relying on users to spot malicious calldata. Second, smart accounts let wallets layer defense-in-depth: spending limits, address allow-lists, transfer delays on large outflows, and automatic pauses on anomalous activity can all be modules on the account itself, not optional settings buried in a UI.

The flip side is new risk surface. Solver networks can collude, paymasters can front-run, and a mis-scoped session key can drain an account silently. Intent wallets do not eliminate risk; they move it from "did the user read the calldata?" to "did the wallet's modules and solvers behave correctly?" That is a far better question to be auditing in 2026.

What Builders Should Watch in the Next 12 Months

Three inflection points are worth tracking:

  • EIP-7702 saturation. As more wallets turn on delegation and more dApps start assuming smart-wallet capabilities, the design space for EOA-only UX collapses. Apps that still require users to manually fund gas, approve separately, and sign bridges will feel obsolete.
  • ERC-7579 module ecosystems. Expect a real marketplace of audited validators, session-key modules, recovery policies, and compliance hooks that wallets can compose the way mobile apps compose SDKs. Thirdweb, OpenZeppelin, and Rhinestone are already building toward this.
  • Intent settlement standards. Cross-chain intents are the next battleground, and whoever standardizes settlement (ERC-7683 and its successors) will influence how liquidity and MEV get captured across L2s.

The underlying infrastructure — low-latency RPCs, bundlers, paymasters, indexers — has to keep pace. Every intent that a wallet accepts becomes several chain operations behind the scenes, which means the providers that serve these wallets see traffic scale non-linearly with user counts.

BlockEden.xyz operates high-availability RPC and indexing infrastructure across Ethereum, Base, Arbitrum, Sui, Aptos, and other networks that intent-based wallets settle on. If you are building a smart-wallet SDK, paymaster, solver, or embedded-wallet experience, explore our API marketplace to run on infrastructure designed for the multi-chain, intent-driven future.

Sources

Mint Blockchain Shuts Down: The L2 Graveyard Is Now a Discipline

· 9 min read
Dora Noda
Software Engineer

On April 17, 2026, Mint Blockchain — the NFT-focused Ethereum Layer 2 launched in 2024 by NFTScan Labs and MintCore — announced it was turning off the lights. Users have until October 20, 2026 to withdraw ETH, WBTC, USDC, and USDT through the official gateway at mintchain.io/withdraw. After that date, any assets left on-chain are gone. No extensions. No exceptions.

It is tempting to read this as just another crypto project fading out. It is not. Mint's closure is the latest entry in a 2026 trend that has quietly become one of the most important structural stories in Ethereum: the "Build Every L2" era is colliding with revenue reality, and the rollup ecosystem is learning a new discipline — how to die gracefully.

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.

Virtuals Protocol Picks Arbitrum: Why the Largest AI Agent Economy Chose Liquidity Over Distribution

· 10 min read
Dora Noda
Software Engineer

When the platform behind over $400 million in cumulative agent-to-agent commerce decides to deploy on a new chain, Layer 2 rivals pay attention. On March 24, 2026, Virtuals Protocol — the most commercially active AI agent platform in crypto — announced that its Agent Commerce Protocol (ACP) would go live on Arbitrum. The choice is worth unpacking: Virtuals has been a Base-native project since launch, and Base still handles more than 90% of its daily active wallets. So why did the team reach past Coinbase's distribution machine and plant a flag on Arbitrum?

The short answer is liquidity. The longer answer reframes how we should think about where autonomous agents will settle their economic activity — and which Layer 2 is best positioned to host the next wave of machine-to-machine commerce.

The Deal: ACP Goes Live on Arbitrum

ACP is Virtuals' commercial backbone. It provides a standardized framework for AI agents to transact with each other and with humans using smart-contract escrow, cryptographic verification, and an independent evaluation phase. Think of it as Stripe for autonomous software: an agent hires another agent, funds are locked in escrow, work is delivered, a neutral evaluator confirms the outcome, and the payout is released — all without a trusted platform in the middle.

The Arbitrum integration went live the same day it was announced, with projects confirming operational on-chain payments. That matters because most "multi-chain" announcements in crypto are future-dated deployment promises. Virtuals shipped code, not a roadmap slide.

The numbers behind the move are substantial. ACP has processed over $400 million in cumulative aGDP (agentic gross developer product), with over $39.5 million in protocol revenue flowing to the Virtuals treasury and its agent ecosystem. VIRTUAL, the platform's token, trades at roughly $0.75 with a $492 million market cap and ranks #85 on CoinMarketCap. Virtuals is not a speculative narrative — it is already the largest production agent-commerce venue in crypto.

Why Not Just Stay on Base?

Base has been extraordinarily good to Virtuals. Coinbase's L2 contributes over 90.2% of daily active wallets and roughly $28.4 million in daily agent-related volume for the platform. Base's appeal is obvious: 100M+ Coinbase users sit on the other side of a single on-ramp, and Coinbase's product team has invested heavily in making agent deployment a first-class use case.

But distribution is not the same as liquidity. And agents, as they mature, increasingly need both.

Every time an agent pays another agent, liquidates an inventory position, hedges a treasury, or routes a customer payment to a stablecoin, it touches DEXs, lending markets, and stablecoin pools. Deep liquidity lowers slippage, tightens spreads, and narrows the execution penalty that eats into per-transaction margins. For an agent operating at micro-revenue scale — pennies per job, thousands of jobs a day — slippage is existential.

This is where Arbitrum's profile becomes compelling. The chain processed more than 2.1 billion cumulative transactions in 2025 and holds roughly $16–20 billion in total value locked, representing about 30.86% of the entire L2 DeFi market. Stablecoin supply on Arbitrum grew 80% year-on-year to nearly $10 billion, with USDC representing roughly 58% of on-chain stables. Post-Fusaka, average transaction fees dropped to approximately $0.004.

Translated to agent economics: Arbitrum offers the deepest DEX liquidity, the largest regulated-stablecoin float, and sub-cent finality. Base has users; Arbitrum has markets.

The Base vs. Arbitrum L2 War, Reframed

The Layer 2 competition has been narrated for two years as a consolidation race. Base and Arbitrum together control over 77% of the L2 DeFi ecosystem, and the remaining rollups are fighting for what's left. But the Virtuals integration suggests a more interesting framing: the winning chain for agent commerce may not be the chain with the most users or the most TVL in absolute terms — it may be the chain whose liquidity profile best matches the transaction shape agents actually generate.

Agents do a lot of swapping. They hold stablecoins more than they hold volatile assets. They settle small amounts frequently rather than large amounts rarely. They route through DEXs rather than centralized venues. Arbitrum's stack — Uniswap V4, GMX, Camelot, and the deepest USDC/USDT pools on any L2 — is effectively purpose-built for that workload. Base's stack is tilted more toward consumer apps and on-ramped spot users.

The Virtuals team is not abandoning Base. Base remains its primary home, and the vast majority of agent wallets will continue to live there. But for the subset of agents whose jobs require serious liquidity — DeFi-adjacent agents, trading agents, treasury-management agents, cross-chain payment agents — routing through Arbitrum's commerce layer is a strictly better outcome.

The ERC-8183 Context

The Arbitrum deployment also has an Ethereum-alignment story. Virtuals co-developed ERC-8183 with the Ethereum Foundation's dAI team as the formal standard for AI agent commercial transactions. ERC-8183 defines a "Job" primitive with three roles — client, provider, and evaluator — and uses smart contracts to hold funds through the full lifecycle from initiation to completion.

Arbitrum is Ethereum's largest EVM-equivalent L2. Deploying ACP on Arbitrum positions Virtuals as the reference implementation of ERC-8183 in the Ethereum mainstream, not a Base-specific side-track. It also gives developers a production-grade venue to test the standard before rolling it out to other chains.

That matters for the broader standards race. ERC-8183 competes conceptually with BNB Chain's BAP-578 (the proposed standard for tokenizing agents as on-chain assets), Solana-native frameworks like ElizaOS, and Ethereum's ERC-8004 agent-deployment standard. By planting ACP on Arbitrum, Virtuals increases the probability that ERC-8183 becomes the dominant "how do agents transact" standard while other proposals focus on identity, deployment, or tokenization.

The Competitive Landscape Gets Crowded

Virtuals is not alone in building agent commerce infrastructure. The field is becoming the most watched narrative in the AI-crypto intersection, and the architectural bets are starting to look different.

Coinbase's Agentic Wallets and x402. Coinbase has built a full agent stack: Agentic Wallets for key management, x402 as an HTTP-native payment protocol, and CDP onboarding that plugs into 100M+ Coinbase users. x402 has already processed more than 50 million transactions. The philosophy is agent-agnostic — Coinbase doesn't care which platform built the agent, it wants to be the wallet and payment rail underneath.

Nevermined with Visa and x402. Nevermined stitched together Visa Intelligent Commerce, Coinbase's x402, and its own economic orchestration layer to let agents pay with traditional card rails while settling on-chain. The approach targets publishers, data providers, and API-first businesses who want to monetize agent traffic that currently bypasses their paywalls.

BNB BAP-578. BNB Chain is proposing a chain-level standard for treating agents themselves as tradable on-chain assets. Instead of standardizing how agents transact (ACP) or how they pay (x402), BAP-578 standardizes how agents are held, transferred, and represented in wallets.

Virtuals ACP on Arbitrum. Commerce-protocol-first, liquidity-first, Ethereum-aligned. The thesis is that agents need a venue to do business in, not just a wallet to spend from or a token standard to be represented as.

These are not mutually exclusive. A production agent in 2027 might be deployed on Base, held in a Coinbase Agentic Wallet, represented under BAP-578, and transact through ACP on Arbitrum. But the standards race determines which layer captures the most value — and the team that sets the default commerce protocol probably wins the largest share.

What the Multi-Chain Footprint Signals

Virtuals' chain roster is expanding fast. As of April 2026, the protocol is live on Ethereum mainnet, Base, Solana, Ronin, Arbitrum, and the XRP Ledger, with planned Q2 2026 deployments on BNB Chain and XLayer. That is seven to nine chains by mid-year.

The pattern looks less like a multi-chain hedge and more like a deliberate liquidity-zone strategy. Each chain represents a distinct liquidity pocket — Base for consumer distribution, Arbitrum for DeFi depth, Solana for throughput and memes, Ronin for gaming, XRP Ledger for payments corridors, BNB Chain for Asian market access. Agents can be deployed to the chain that matches their job type, and ACP can route commerce across them.

For the L2 ecosystem, the implication is uncomfortable: the biggest agent platform has explicitly decided that no single chain wins. Agents will route based on economics, not loyalty. Chains that cannot differentiate on specific transaction shapes — stablecoin depth, gaming UX, regulatory clarity, consumer distribution — get skipped.

The Infrastructure Question Builders Should Ask

If you're building an AI agent product in 2026, the Virtuals-to-Arbitrum move reshapes the deployment question. It used to be "which chain has the most users?" That question assumed agents needed consumer distribution. But most production agents today are not consumer-facing — they are back-office, API-driven, or agent-to-agent workflows where the "user" is another piece of software.

For those workloads, the right question is: "where does the money my agent touches actually live?" If the agent swaps stablecoins, settles invoices, routes payments, or hedges positions, that money lives in DeFi pools and stablecoin floats. Arbitrum wins that question today. Base wins the consumer-adjacent question. Solana wins the high-frequency question.

Pick the chain whose liquidity profile matches your agent's workload, not the chain with the prettiest brand deck.

The Bigger Picture

The Virtuals-Arbitrum integration is easy to read as "one more chain deployment" and miss what it actually signals: the autonomous agent economy is starting to make independent, economics-driven infrastructure decisions. It is no longer organized around whichever foundation or ecosystem has the best BD team. It is organizing around where agents can execute their jobs most efficiently.

That shift matters for every infrastructure provider in crypto. The chains, RPC services, wallet providers, and stablecoin issuers that win the agent economy will win because they built the best venue for machine-speed, machine-scale transactions — not because they onboarded the most humans first.

Arbitrum just got a substantial vote of confidence. Base still has the distribution crown. The next twelve months will reveal whether agent commerce consolidates on one winner, fragments permanently across liquidity zones, or — most likely — rewards whichever chain ships the best boring infrastructure: cheap gas, deep stablecoin pools, reliable RPC, and predictable finality.

BlockEden.xyz provides enterprise-grade RPC infrastructure for Arbitrum, Base, Ethereum, Solana, and 20+ other chains powering the agent economy. If you are deploying autonomous agents that need reliable, low-latency access to the chains where liquidity actually lives, explore our API marketplace to build on infrastructure designed for machine-scale workloads.


Sources

Cysic Venus Open-Sources the ZK Proving Stack Making Ethereum Real-Time Verification Economical

· 11 min read
Dora Noda
Software Engineer

Seven point four seconds. That is how long it now takes to generate a zero-knowledge proof for an entire Ethereum mainnet block on a 24-GPU cluster running Cysic's new Venus prover. A year ago, the same task required 200 high-end cards and ten seconds to hit real-time parity. The collapse of that gap — roughly an order of magnitude in hardware cost while breaking below Ethereum's twelve-second slot time — is the quietest inflection point in crypto infrastructure this quarter. And it is happening precisely as Fusaka's PeerDAS upgrade throws open the data availability floodgates, turning proof generation into the single remaining bottleneck between Ethereum and a hundred-rollup future.

On April 8, 2026, Cysic open-sourced Venus, a hardware-optimized proving backend built on top of Zisk, the zkVM originally developed by Polygon Hermez. The release was not marketed with the usual token unlock choreography. It was dropped on GitHub with a technical note claiming a nine-percent end-to-end improvement over ZisK 0.16.1 and an invitation to contribute. That understatement conceals the real story: ZK proving has quietly crossed from research project to commodity compute, and the infrastructure stack that wins the next two years will not look like what most L2 teams are currently building toward.

The Bottleneck Nobody Priced In

For three years, Ethereum's scaling debate has fixated on data availability. Blobs, EIP-4844, PeerDAS, danksharding — every roadmap conversation assumed that once Ethereum could cheaply post rollup data, L2s would inherit the cost reduction automatically. That assumption quietly broke in late 2025. Fusaka shipped on December 3, 2025, and PeerDAS arrived with it, promising 48 blobs per block and a path to 12,000 transactions per second. Data availability, for the first time in Ethereum's history, stopped being the tightest constraint on the system.

The new tightest constraint is proof generation. ZK rollups need cryptographic attestations that their state transitions are valid. Generating those proofs is expensive compute work that happens off-chain, on specialized hardware. Optimistic rollups, which settle disputes through a challenge window rather than mathematical proof, skip this cost entirely — which is why the top ZK L2s currently sit at roughly $3.3 billion in total value locked, while optimistic rollups have passed $40 billion. The twelve-to-one gap is not a narrative problem. It is a prover economics problem.

Succinct's internal research put the math bluntly. To prove every Ethereum block in real time with SP1 Turbo required a cluster of 160-200 RTX 4090 GPUs — a capital outlay of $300,000 to $400,000 per proving cluster, consuming grid-scale electricity. Any L2 wanting to run its own prover faced a choice between centralizing proof generation with a handful of operators who could afford that stack, or accepting multi-minute proving latencies that broke the user experience. Neither option delivered the "ZK endgame" that Vitalik has been sketching since 2021.

How Venus Actually Works

Venus is interesting less for what it is than for what it represents. Cysic did not invent a new proof system. The underlying cryptography comes from Zisk, which descended from years of work by Jordi Baylina and the Polygon team. What Cysic did was re-architect the execution layer so that proof generation becomes an explicit computation graph — a directed acyclic diagram of operations that can be scheduled end-to-end across heterogeneous hardware.

In practice, this means the CPU-GPU synchronization overhead that dominated prior zkVMs gets optimized away at the scheduling layer. The prover does not stop and wait for a GPU kernel to finish before dispatching the next operation. The graph is known in advance, so data movement, memory allocation, and kernel launches can be pipelined. That is where the nine-percent improvement over ZisK 0.16.1 comes from — not a breakthrough in polynomial math, but an engineering win in how the math touches silicon.

More importantly, the same computation graph runs on FPGAs and, eventually, on Cysic's dedicated ZK ASIC. The company has publicly claimed its ASIC can perform 1.33 million Keccak hash function evaluations per second, a hundred-fold improvement over typical GPU workloads, with roughly fiftyfold better energy efficiency. Internal estimates suggest a single purpose-built ZK Pro unit could replace roughly 50 GPUs while drawing a fraction of the power. If those numbers hold in production, the economics of proving shift from renting warehouse space full of RTX cards to operating a compact rack of specialized chips.

The Race to Sub-Twelve-Second Proving

Venus did not arrive in a vacuum. Over the last twelve months, three teams have converged on the same milestone: proving Ethereum blocks in under the twelve-second slot time that defines real-time verification.

Succinct hit it first in public. SP1 Hypercube, announced in May 2025, proved 93 percent of a 10,000-block mainnet sample in real time using a 200-card RTX 4090 cluster. A November 2025 revision pushed the success rate to 99.7 percent using just sixteen RTX 5090 GPUs — a hardware cost reduction of roughly 90 percent in six months. The system is now live on Ethereum mainnet, producing proofs for every block as they are mined.

Cysic's number is even tighter on cost. Seven point four seconds with 24 GPUs puts end-to-end proving comfortably inside the slot time on commodity hardware. The current Venus release is open source, not audited for production, and still under active development. But the engineering trajectory suggests that a sub-ten-second proof on a consumer-grade cluster is now a matter of software tuning rather than fundamental architecture.

Per-proof costs have collapsed in lockstep. Industry benchmarks place the current best-case cost at roughly two cents per Ethereum block proof using 16x RTX 5090 hardware. The target for mass adoption is below one cent. A year ago, that same proof cost closer to a dollar. Three years ago, it was literally uneconomic — the gas fees on the settled rollup would not cover the prover's electricity bill. This is the kind of cost curve that quietly kills entire product categories, and it is accelerating.

The Marketplace Wars Are Already Here

Cheap, fast proving does not automatically become accessible. Someone has to operate the hardware, match demand, price proof jobs, and settle payments. Three different architectural bets are now competing for that middleware layer.

Boundless, launched on mainnet by RISC Zero in September 2025, runs an auction marketplace. GPU operators bid to produce proofs, and the system routes work to the lowest cost qualified prover. The model borrows from spot compute markets like AWS Spot Instances and promises to drive proof costs toward marginal hardware cost. Boundless recently added Bitcoin settlement, which lets Ethereum and Base proofs verify on the Bitcoin base layer — a niche but meaningful expansion of where ZK attestations can live.

Succinct's Prover Network takes a different bet. Rather than pure auction, it operates a routing protocol with approved high-performance provers handling specific workloads. Cysic joined the network as a multi-node prover operator, running GPU clusters tuned for SP1 Hypercube production traffic. The arrangement suggests Succinct sees value in reliability and latency guarantees that a pure spot market cannot provide for consumer-facing rollups.

Cysic itself launched its mainnet and CYS token on December 11, 2025, and has since processed over ten million ZK proofs integrated with Scroll, Aleo, Succinct, ETHProof, and others. The network's pitch is "ComputeFi" — turning proving capacity into a liquid, onchain asset that operators can tokenize and stake. Whether this becomes a third major marketplace or settles into a supplier role for the two larger networks is the open question of 2026.

Why This Matters for Rollup Economics

The punchline sits three layers down from the infrastructure news, in the unit economics of actual L2s. Today, a zkEVM rollup spends a meaningful fraction of its per-transaction costs on proof generation. Those costs get passed through to users as gas fees or eaten by the rollup operator as margin. Either way, they widen the gap between what a ZK rollup can charge and what an optimistic rollup charges for the same transaction.

If proof costs drop to sub-cent levels and proving latency fits inside Ethereum's slot time, that gap closes. A ZK rollup stops needing to charge a security premium. The user-facing experience becomes indistinguishable from an optimistic rollup — except that withdrawals settle in minutes rather than the seven-day challenge window that still friction-taxes every optimistic bridge.

That flip matters structurally because the largest pools of institutional liquidity still cite the optimistic-rollup withdrawal delay as a reason to stay on L1. Real-time ZK proving with marketplace-driven pricing removes the last functional argument against ZK-first rollup architecture. Every L2 team currently shipping an optimistic stack will face a serious technical review in 2026. Several will migrate, or at minimum ship a ZK fork of their sequencer.

What Still Might Break

The Venus release is honest about its limitations. The code has not been audited for production use. Running unaudited prover software in a live rollup is the kind of decision that sinks careers if a soundness bug creates an invalid proof the verifier accepts. Expect production deployment to lag the open-source release by months, not weeks.

The hardware story also concentrates risk. If ASIC-based proving delivers the promised fiftyfold efficiency gain, a handful of fabricators will dominate prover hardware the way Bitmain dominated Bitcoin mining. That dynamic cuts against the decentralization narrative that justified ZK rollups in the first place. Cysic's ASIC roadmap is an answer to a compute problem, but it is a fresh question about who owns the chips that secure the world's largest smart contract platform.

Finally, real-time proving only matters if the rest of the stack keeps up. Data availability sampling via PeerDAS needs to actually work at production scale, not just in testnet benchmarks. Sequencer decentralization remains an unresolved problem across every major L2. Proving is necessary but not sufficient for the endgame, and the industry has a history of declaring victory on one layer while quietly papering over breakdowns in adjacent layers.

The Near-Term Inflection

Zoom out and the pattern becomes clear. In May 2025, real-time Ethereum proving required a $400,000 GPU cluster and a nine-figure research budget. In April 2026, it runs on 24 commodity cards with open-source software. The next eighteen months will compress the cost curve further — toward ASIC economics, toward cent-level per-proof pricing, toward proof generation as a utility service rather than a bespoke infrastructure project.

For builders, the practical implication is that ZK-based architectures which were uneconomic in 2024 are worth re-evaluating now. Privacy-preserving transaction protocols, verifiable AI inference, cross-chain messaging with mathematical rather than multisig security, onchain identity with zero-knowledge credential disclosure — all of these sat behind a prover cost wall that is no longer there.

The Cysic Venus release, read alone, is a modest engineering update to an open-source proving backend. Read in the context of Succinct's Hypercube shipping to mainnet, Boundless running live proof auctions, and Fusaka's PeerDAS clearing the data availability bottleneck — it is the point where ZK infrastructure stops being the constraint and starts being the substrate. Every rollup thesis written before that transition needs a rewrite.

BlockEden.xyz provides enterprise-grade RPC and data infrastructure across 27+ chains including Ethereum L2s, Scroll, and Aptos. As real-time proving reshapes the L2 landscape, explore our API marketplace to build on reliable foundations for the ZK-native era.


Sources:

Ethereum's Glamsterdam Upgrade: How ePBS and EIP-7732 End the Flashbots Era and Rewrite MEV

· 9 min read
Dora Noda
Software Engineer

Two companies currently decide which transactions land on Ethereum. Titan Builder and Beaverbuild together construct roughly 86% of mainnet blocks, and adding Rsync and Flashbots pushes the top four past 90%. For a network whose brand rests on decentralization, that is an uncomfortable number — and it is about to change.

The Glamsterdam hard fork, scheduled for the first half of 2026, brings Enshrined Proposer-Builder Separation (ePBS) — formalized as EIP-7732 — into Ethereum's consensus layer. After three years of MEV-Boost running as off-chain middleware, block production is finally being absorbed into the protocol itself. The winners and losers of that shift will define the next cycle of Ethereum infrastructure.

The Duopoly Problem Glamsterdam Is Trying To Solve

To understand why ePBS matters, start with the market it is replacing.

MEV-Boost, the relay system Flashbots shipped after The Merge, was meant to be a temporary fix. It let validators outsource block construction to specialized builders who could squeeze more value out of each slot, then redistribute that value back to the proposer. It worked almost too well. Within two years, over 90% of Ethereum blocks were built via MEV-Boost, and the construction market calcified around a handful of players.

The 2025 numbers from relayscan.io tell the story bluntly:

  • Titan Builder: ~46.5% of blocks, ~$19.7M profit
  • Rsync Builder: ~15.6%
  • Flashbots: ~12.8%
  • Beaverbuild: ~9.4%

A Herfindahl-Hirschman Index reading near 3,892 places the builder market well beyond the U.S. Department of Justice's threshold of 1,800 for "highly concentrated." Titan's profit margin under exclusive order flow deals reportedly exceeds 17%, while Flashbots — which originally seeded the entire MEV-Boost ecosystem — barely breaks even on block building today.

That is the market ePBS aims to dismantle at the protocol level.

What EIP-7732 Actually Changes

EIP-7732 is deceptively surgical. It is a consensus-layer-only upgrade that decouples execution validation from consensus validation, both logically and temporally. In plain terms, the proposer no longer needs to see the full block's execution payload before committing to it.

Here is the new flow:

  1. Builders assemble execution payloads off-chain and broadcast signed SignedExecutionPayloadBid commitments containing only a blockhash and a payment value.
  2. The proposer selects the highest bid and embeds the commitment in the beacon block — without seeing the transactions inside.
  3. A new subset of validators, the Payload Timeliness Committee (PTC), attests whether the builder revealed the committed payload on time with the correct blockhash.
  4. Execution validation is postponed until the next slot's beacon block validation.

The critical engineering insight is that the full execution payload no longer rides on the consensus critical path. Network propagation speeds up, validators shoulder less computational load per slot, and — the part every MEV researcher has been waiting for — the relay becomes redundant. The builder commits cryptographically; the protocol itself enforces the promise.

Why This Guts The Relay Business

Today, relays exist because proposers cannot trust builders directly. A relay like Flashbots or Titan Relay holds the full block, verifies it, and only reveals it to the proposer after the proposer signs the header — preventing the proposer from stealing the builder's MEV.

ePBS makes that trust relationship native to the protocol. The PTC handles timeliness enforcement. The consensus rules handle payment. The entire middleware layer Flashbots built to coordinate block building — the most important piece of Ethereum infrastructure outside the client software itself — becomes economically unnecessary.

This is why the coindesk coverage framed Glamsterdam as a fight about MEV fairness, not just performance. The question is not whether MEV disappears. MEV is a mathematical consequence of ordered transactions with public mempools. The question is who captures it and on what terms.

The Censorship Math Changes Too

The relay oligopoly did not just concentrate power; it concentrated compliance. At peak, roughly 72% of MEV-Boost blocks were classified as OFAC-compliant because the largest relays filtered sanctioned addresses. That number has since declined to around 30% of relayed blocks as non-censoring relays gained share, but the architecture still gives a handful of US-based companies veto power over which Ethereum transactions get proposed.

ePBS does not mandate censorship resistance. But by removing the relay bottleneck, it removes the natural enforcement point. Builders who censor now have to compete against builders who do not on raw auction price — and on a trustless bid-reveal market, price tends to win. Expect the OFAC-compliant share to drop further after Glamsterdam ships, simply because the easiest place to impose policy has been eliminated.

Jito, Base, and Three Ways To Price A Block

Ethereum is not the first chain to confront MEV markets, and it is worth comparing ePBS against the two other models that dominate 2026.

Solana's Jito approach. Over 94% of Solana stake runs the Jito-Solana client. Tips flow directly to validators through an explicit auction — no relay, no builder-proposer split. MEV contributes 15-25% of total validator rewards, and the connection to stakers via JitoSOL is direct. The upside is transparency; the downside is that Solana's leader schedule concentrates MEV extraction windows in ways that still produce sandwich attacks on DEX traders.

Base's sequencer model. Coinbase operates the single sequencer on Base and captures sequencer revenue directly. There is no MEV auction to third parties because there are no third parties. This maximizes revenue capture for the L2 operator but sacrifices the decentralization story entirely — a tradeoff that works for Coinbase-scale balance sheets and nobody else.

Ethereum's ePBS. A trustless bid-reveal auction between builders and proposers, mediated by consensus. In theory this combines Jito's transparency with the credibly neutral distribution Ethereum's ideology requires. In practice, nobody knows yet whether builder concentration simply reasserts itself under new rules, or whether the removal of exclusive-order-flow agreements genuinely reopens the market.

The $500M Question For DeFi Users

Researchers estimate DeFi users lose north of $500 million annually to sandwich attacks, frontrunning, and JIT liquidity extraction — with sandwich attacks alone responsible for 51% of MEV volume in 2025. EigenPhi's data from late 2025 found over 72,000 sandwich attacks targeting 35,000 victims on Ethereum in a single 30-day window. A single Uniswap v3 stablecoin swap in March 2025 saw $220,764 of USDC compressed into $5,271 of USDT — a 98% loss to the victim.

Does ePBS reduce this? Directly, no. The attack surface — public mempools plus arbitrary transaction ordering — remains. But ePBS reshapes the ecosystem around MEV protection:

  • Private mempool services like MEV-Blocker ($5B+ in protected transactions routed historically) and CowSwap's coincidence-of-wants batching retain their value, because the protocol still does not hide user intent.
  • Encrypted mempools like EIP-8105's "Universal Enshrined Encrypted Mempool" become the logical follow-on proposal, tackling the order visibility that ePBS leaves untouched.
  • SUAVE and decentralized sequencing remain relevant as application-layer MEV protection rather than infrastructure monopolies.

The short version: ePBS fixes who gets paid for ordering transactions, not whether users can be exploited through ordering. The second fight is just beginning.

What Builders Should Actually Watch

Three signals will tell you whether ePBS delivers on its decentralization promise or quietly reproduces the old oligopoly:

  1. HHI after six months. If the builder HHI remains above 2,500 post-ePBS, the concentration problem was about economies of scale, not middleware, and no amount of protocol surgery will help. If it falls below 1,800, ePBS worked as advertised.

  2. Exclusive order flow agreements. Current builder margins depend on private deals with Uniswap, Banana Gun, and other high-value order flow sources. ePBS does not directly outlaw these, but it changes the leverage. Watch whether flagship integrations migrate to BuilderNet-style open consortia or stay exclusive.

  3. Non-censoring block share. Post-Glamsterdam, the relay-based censorship chokepoint is gone. If OFAC-compliance share stays above 50% anyway, it reveals that compliance pressure on Ethereum is structural rather than infrastructural.

The Infrastructure Reality Check

Glamsterdam will reshape how Ethereum orders transactions, but it will not touch what most infrastructure providers actually do: run nodes, serve RPCs, index state. The block-building layer has always been a rarefied slice of the stack. For developers building on top of Ethereum, the practical impact of ePBS is indirect — slightly faster propagation, modestly more credible neutrality, and a likely shift in which MEV protection services matter most.

BlockEden.xyz provides enterprise-grade API infrastructure for Ethereum, Sui, Aptos, and 20+ other chains, with SLA-backed RPC endpoints that insulate your application from consensus-layer changes. Explore our API marketplace to build on infrastructure designed to outlast any single upgrade.

Sources

Google's Quantum AI Whitepaper Maps Five Attack Paths That Put $100B of Ethereum at Risk

· 12 min read
Dora Noda
Software Engineer

One key cracked every nine minutes. The top 1,000 Ethereum wallets emptied in under nine days. A 20-fold collapse in the qubit count needed to break the cryptography that secures more than $100 billion of on-chain value. These are not the projections of a doomsday Twitter thread — they come from a 57-page whitepaper Google Quantum AI published on March 30, 2026, co-authored with Ethereum Foundation researcher Justin Drake and Stanford cryptographer Dan Boneh.

For a decade, "quantum risk" lived in the same intellectual neighborhood as asteroid strikes — real, catastrophic, but distant enough that no one had to act. The Google paper relocated the threat. It mapped five concrete attack paths against Ethereum, named the wallets, named the contracts, and gave engineers a number — fewer than 500,000 physical qubits — that maps directly onto the published roadmaps of IBM, Google, and a half-dozen well-funded startups. Q-Day, in other words, just acquired a calendar invite.

A 57-Page Paper That Changes the Threat Model

The paper, titled "Securing Elliptic Curve Cryptocurrencies against Quantum Vulnerabilities," is the first time a major quantum hardware lab has done the unglamorous engineering work of translating Shor's algorithm from a 1994 theoretical attack into a step-by-step blueprint against the elliptic-curve discrete logarithm problem (ECDLP) that secures Bitcoin, Ethereum, and virtually every chain that signs transactions with secp256k1 or secp256r1.

Three things make the paper land harder than prior estimates.

First, the qubit count. Earlier academic work pegged the resource requirement for breaking 256-bit ECDLP at multiple millions of physical qubits. The Google authors knock that down to fewer than 500,000 — a 20-fold reduction driven by improved circuit synthesis, better error-correction overhead, and tighter routing of magic states. IBM has publicly committed to a 100,000-qubit machine by 2029. Google has not published a comparable target, but its in-house roadmap is widely understood to be similar in slope. Half a million qubits is no longer a number that requires hand-waving toward the 2050s.

Second, the runtime. The paper estimates that once a sufficient machine exists, recovering a single private key from a public key takes on the order of nine minutes of quantum runtime — not days, not hours. That number matters enormously, because it determines how many high-value targets an attacker can drain inside the window between detection and response.

Third, and most consequential for Ethereum specifically, the authors do not stop at "ECDSA is broken." They walk through the protocol stack and identify five distinct attack surfaces, each with named victims.

The Five Attack Paths Against Ethereum

The paper organizes Ethereum's quantum exposure into five vectors, deliberately avoiding the lazy framing of "all crypto dies on the same day."

1. Externally Owned Account (EOA) compromise. Once an Ethereum address has signed even a single transaction, its public key is permanent and visible on-chain. A quantum attacker derives the private key in roughly nine minutes, then drains the wallet. Google's analysis identifies the top 1,000 wallets by ETH balance — collectively holding about 20.5 million ETH — as the most economically rational targets. At nine minutes per key, an attacker clears the entire list in under nine days.

2. Admin-controlled smart contract takeover. Ethereum's stablecoin economy and most production DeFi protocols rely on multisigs, upgrade keys, and minter roles controlled by EOAs. The paper enumerates 70-plus admin-controlled contracts, including the upgrade or minter keys behind major stablecoins. Compromising those keys does not just steal a balance — it lets the attacker mint, freeze, or rewrite the contract logic. Google estimates roughly $200 billion in stablecoins and tokenized assets sit downstream of these vulnerable keys.

3. Proof-of-stake validator key compromise. Ethereum's consensus layer uses BLS signatures, which are also based on elliptic-curve assumptions and equally broken by Shor's algorithm. An attacker who recovers enough validator private keys can, in principle, equivocate, finalize conflicting blocks, or stall finality. The exposure here is not stolen ETH — it is the integrity of the chain itself.

4. Layer 2 settlement compromise. The paper extends the analysis to major rollups. Optimistic rollups depend on EOA-signed proposer and challenger keys; ZK rollups depend on operator keys for sequencing and proving. Compromising those keys does not break the underlying validity proofs, but it does let an attacker steal sequencer fees, censor exits, or — in the worst case — rug the bridge that holds canonical L2 deposits.

5. Permanent forgery of historical data availability. This is the path that cryptographers find most disturbing. The original Ethereum trusted setup (and the KZG ceremony powering EIP-4844 blobs) relies on assumptions that a sufficiently powerful quantum machine can break by reconstructing setup secrets from public artifacts. The result is not theft — it is a permanent ability to forge historical state proofs that look valid forever. There is no rotation that fixes data already published.

The five paths collectively put more than $100 billion at immediate risk, and an order of magnitude more at structural risk if confidence in chain integrity collapses.

Ethereum Is More Exposed Than Bitcoin

A subtle but important conclusion of the paper: Ethereum's quantum exposure runs deeper than Bitcoin's, despite both chains using the same secp256k1 curve.

The reason is account abstraction in reverse. Bitcoin's UTXO model, particularly post-Taproot, supports addresses derived from a hash of the public key — meaning the public key is only revealed at spend time. A user who never reuses an address has a one-shot exposure window measured in the seconds between broadcast and confirmation. Funds parked in unspent, untouched addresses are quantum-safe by construction.

Ethereum has no such property. The moment an EOA signs its first transaction, its public key is on-chain forever. There is no "fresh address" pattern that hides it. A wallet that has transacted even once is a static target whose vulnerability does not decay over time. The 20.5 million ETH in the top 1,000 wallets is not just theoretically exposed — it is permanently fingerprinted on a public ledger waiting for a sufficiently powerful machine.

Worse, Ethereum cannot rotate keys without abandoning the account. Sending funds to a new address creates a new account with a new public key, but anything still associated with the old address — ENS names, contract permissions, vesting positions, governance allowlists — does not move with the funds. The migration cost is not just the gas to move tokens; it is the cost of unwinding every relationship the old address has accumulated.

The 2029 Deadline and Ethereum's Multi-Fork Roadmap

In parallel with the Google paper, the Ethereum Foundation launched pq.ethereum.org in March 2026 as the canonical hub for post-quantum research, the roadmap, open-source client repos, and weekly devnet results. More than 10 client teams are now running interoperability devnets focused on post-quantum primitives, and the community has converged on a target of completing L1 protocol-layer upgrades by 2029 — the same year Google has set for migrating its own authentication services off ECDSA.

The roadmap is staged across four upcoming hard forks rather than one big-bang fork. Roughly:

  • Fork 1 — Post-Quantum Key Registry. A native registry that lets accounts publish a post-quantum public key alongside their ECDSA key, enabling opt-in PQ co-signing without breaking existing tooling.
  • Fork 2 — Account Abstraction Hooks. Building on EIP-8141's "Frame Transaction" abstraction, accounts can specify validation logic that no longer assumes ECDSA, providing a native off-ramp toward lattice-based schemes such as ML-DSA (Dilithium) or hash-based SLH-DSA (SPHINCS+).
  • Fork 3 — PQ Consensus. Validator BLS signatures are replaced with a post-quantum aggregation scheme, the largest engineering lift in the entire roadmap because of the signature-size implications for block propagation.
  • Fork 4 — PQ Data Availability. A new trusted setup or transparent setup for blob commitments that does not depend on ECC assumptions, closing the historical-forgery vector.

Vitalik Buterin signaled the urgency in late February 2026 when he wrote that "validator signatures, data storage, accounts, and proofs all need to be updated" — naming all four forks in a single sentence and implicitly conceding that piecemeal upgrades will not suffice.

The challenge is not the cryptography. NIST has already standardized ML-KEM, ML-DSA, and SLH-DSA. The challenge is rolling those primitives through a live $300B+ network without breaking thousands of dapps that hard-code ECDSA assumptions, and without leaving billions of dollars of dormant ETH stranded in wallets whose owners never migrate.

The Frozen-or-Stolen Dilemma

Both Ethereum and Bitcoin face a governance question that no purely technical roadmap resolves: what happens to coins in vulnerable addresses whose owners never migrate?

The Ethereum Foundation's own FAQ frames the choice in plain terms: do nothing, or freeze. Doing nothing means that on Q-Day, an attacker drains every dormant address with a known public key — including the genesis-era wallets, the legacy ICO buyers, the lost-key holders, and a meaningful slice of Vitalik's own historical contributions to public goods funding. Freezing means social-consensus action to invalidate withdrawals from any address that has not migrated by a deadline.

Bitcoin's BIP 361, "Post Quantum Migration and Legacy Signature Sunset," lays out the same trilemma in a three-phase framework. Co-author Ethan Heilman has publicly estimated that a full Bitcoin migration to a quantum-resistant signature scheme would take seven years from the day rough consensus forms — which means BIP 361 needs to be substantively merged in 2026 to hit the 2033 horizon, and probably much sooner to hit 2029.

Neither chain has a precedent for mass coin invalidation. Ethereum did roll back the DAO hack in 2016, but that was a single-event reversal, not the deliberate freezing of millions of unrelated wallets based on cryptographic posture. The decision will inevitably read as a referendum on whether immutability or solvency is the chain's deeper commitment.

What This Means for Builders Right Now

The 2029 deadline can feel comfortably distant, but the decisions that determine whether a project is ready or scrambling get made in 2026 and 2027. A few practical implications surface immediately.

Smart contract architects should audit for ECDSA assumptions. Any contract that hard-codes ecrecover, embeds an immutable signer address, or depends on EOA-signed proposer keys needs an upgrade path. Contracts deployed without admin keys today look elegant; in a post-quantum world, they may look unrecoverable.

Custodians need to begin key-rotation hygiene now. A custody provider with billions under management cannot rotate every wallet in a single Q-Day weekend. Rotation, segregation by exposure tier, and pre-positioned PQ-ready cold storage are 2026 problems, not 2028 ones.

Bridge operators face the highest urgency. Bridges concentrate value behind a small number of multisig keys. The first economically rational quantum attack will not target a randomly chosen wallet — it will target the most valuable single key in the ecosystem. Bridges should be the first to implement hybrid PQ + ECDSA signing.

Application teams should track the four-fork roadmap. Each Ethereum hard fork in the PQ sequence will introduce new transaction types and validation semantics. Wallets, indexers, block explorers, and node operators that lag the upgrade window will degrade gracefully if they planned for it and break catastrophically if they did not.

BlockEden.xyz operates production RPC and indexing infrastructure across Ethereum, Sui, Aptos, and a dozen other chains, and tracks each network's post-quantum migration roadmap so application developers don't have to. Explore our API marketplace to build on infrastructure designed to survive the next decade of cryptographic transitions, not just the current one.

The Quiet Revolution in Threat Modeling

The deepest contribution of the Google paper may be sociological rather than technical. For ten years, "quantum-resistant" was a marketing claim that mostly attached to projects no one used. The serious chains treated PQ migration as a problem for the next generation of researchers. The 57 pages from Google, Justin Drake, and Dan Boneh shifted that posture in a single publication.

Three quantum-cryptography papers have landed in three months. A consensus has formed that the resource gap between current quantum hardware and a cryptographically relevant machine is closing faster than the gap between current chain protocols and post-quantum readiness. The intersection of those two curves — somewhere between 2029 and 2032, depending on whose estimate proves correct — is the most important deadline crypto infrastructure has ever faced.

The chains that treat 2026 as a year for serious engineering work, not vague reassurance, will still be standing on the other side. The ones that wait for the first headline about a stolen Vitalik wallet will not have time to react.

Sources