Skip to main content

94 posts tagged with "Layer 2"

Layer 2 scaling solutions for blockchains

View all tags

FastBridge Collapses the 7-Day L2 Exit: Curve's LayerZero Rail for crvUSD

· 11 min read
Dora Noda
Software Engineer

Seven days is an eternity in DeFi. It is longer than most meme coin lifecycles, longer than the average leveraged position, and certainly longer than any trader wants to wait to move stablecoins from Arbitrum to Ethereum mainnet. Yet the 7-day challenge window baked into optimistic rollups has quietly been the single biggest UX tax on L2 adoption — a tax paid in foregone capital efficiency, liquidity fragmentation, and the endless proliferation of third-party liquidity-pool bridges that patch over what the native rails cannot deliver.

Curve Finance's FastBridge is the most ambitious attempt yet to fix that tax at the protocol layer rather than hide it behind a fee. By wiring LayerZero messaging into a vault-and-mint design, FastBridge compresses crvUSD transfers from Arbitrum, Optimism, and Fraxtal down to roughly 15 minutes — without the liquidity-pool risk, bridged-asset wrappers, or trust assumptions that plague most "fast" bridges. It is also, incidentally, a stress test of the boundary between application-layer bridging and messaging-layer neutrality, a boundary the rsETH exploit of mid-April 2026 made suddenly unavoidable.

Lens Protocol V3 on ZKsync: The SocialFi Layer 2 Bet

· 11 min read
Dora Noda
Software Engineer

What if your social graph, the invisible map of every person you follow, every post you've liked, every creator you've tipped, wasn't locked inside a corporate database? What if migrating 650,000 profiles, 28 million social connections, and 12 million posts to a brand-new blockchain could happen in a single weekend, without any of those users lifting a finger?

That is exactly what Lens pulled off when it shipped Lens Chain and Lens V3. And in doing so, the project placed one of the biggest bets in Web3 to date: that SocialFi, decentralized social media with built-in monetization, needs its own purpose-built Layer 2, not a general-purpose chain shared with DeFi bots and NFT flippers. The stack of choice? ZKsync's ZK Stack for execution, Avail for data availability, and Aave's GHO stablecoin as the gas token.

It's an opinionated bet. It might also be the right one.

Scroll's Research Moat: Why the zkEVM Built With Ethereum Foundation Cryptographers Still Matters in 2026

· 12 min read
Dora Noda
Software Engineer

Most Layer 2s were built by product teams who hired cryptographers. Scroll was built by cryptographers who decided to ship a product. That distinction — buried in the git history of the zkevm-circuits repository, where roughly 50% of the early commits came from Ethereum Foundation researchers and 50% from Scroll engineers — is now one of the more interesting moats in the zkEVM landscape. As six production zkEVMs compete for the same DeFi settlement and institutional traffic, Scroll's origin story isn't just marketing. It's a claim about how the underlying math was designed, audited, and hardened — and whether that difference can still matter when everyone ships fast proofs.

The PSE Collaboration Nobody Else Can Replicate

Scroll's zkEVM was not built in isolation. From its earliest commits, it was co-developed with the Ethereum Foundation's Privacy and Scaling Explorations (PSE) team — the same researchers who author the cryptographic libraries the rest of the industry depends on. The collaboration ran deep enough that both parties contributed roughly 50% of the PSE zkEVM codebase, with Halo2 — the proof system powering the circuits — jointly modified by the two teams to swap its polynomial commitment scheme from IPA to KZG. That change cut proof size meaningfully and made ZK verification on Ethereum economically viable.

This is the technical point competitors have trouble replicating. When the team writing your circuits is the same team auditing the cryptographic library those circuits compile into, a class of subtle bugs disappears. You are not integrating an external primitive and praying its edge cases match your assumptions — you are designing both sides of the interface together. PSE has since shifted focus to a new zkVM exploration, but the Halo2 fork Scroll inherits is still actively maintained upstream. That matters because a zkEVM is not a one-time deliverable. It is a cryptographic surface that needs to be continuously extended as Ethereum adds opcodes, precompiles, and hard-fork changes.

Contrast this with the competing architectures. zkSync Era uses a Type 4 approach, transpiling Solidity to its own custom bytecode optimized for proving. Starknet uses Cairo, a new language designed for STARKs, which means the entire development stack is custom. Polygon's zkEVM takes a bytecode-level approach closer to Scroll, but the cryptographic library and execution environment were developed in-house rather than in tandem with Ethereum Foundation researchers. Linea, Taiko, and others each occupy different points on the compatibility spectrum.

None of them can honestly market "our circuits were co-designed with the researchers who invented the proving system." That sentence is a Scroll-only sentence.

Bytecode Equivalence Is a Security Posture, Not a Feature

The Vitalik-authored zkEVM type classification has become standard industry taxonomy: Type 1 aims for full Ethereum equivalence at every layer, Type 2 preserves bytecode equivalence with minor internal modifications, Type 3 makes larger compromises for performance, and Type 4 abandons bytecode entirely for speed. In 2026, Scroll is working toward Type 2 while documenting every opcode and precompile difference transparently in its public docs.

The practical meaning of bytecode equivalence is this: a Solidity contract compiled with the standard Ethereum toolchain produces bytecode that runs identically on Scroll as it does on Ethereum mainnet. No recompilation. No custom compiler. No special libraries. The contract you audit on mainnet is the contract that executes on L2.

This sounds like a developer-experience feature. It is actually a security posture. Every additional transformation between mainnet bytecode and L2 execution is a surface where bugs can appear — silently, in production, after the audit has already concluded. zkSync Era's transpiler has shipped multiple edge-case bugs where Solidity constructs behaved differently on L2 than on L1. These are not theoretical risks. They are the kind of issues that destroy DeFi TVL when a lending protocol's liquidation logic behaves slightly differently than its developers verified.

Scroll's trade-off is explicit: bytecode equivalence caps peak throughput below more aggressively optimized Type 3 and Type 4 designs. You pay for security in TPS. For DeFi protocols settling real value, that trade is almost always the right one. For gaming and consumer apps where a bug is a rollback and not a bankruptcy, the trade is less clear — which is why the landscape has fragmented rather than consolidated.

The Multi-Team Audit Stack

Scroll's audit history reveals how seriously the team takes circuit correctness — and how hard it is to get right. The codebase has been independently reviewed by Trail of Bits, OpenZeppelin, Zellic, and KALOS, with different firms covering different surfaces:

  • Trail of Bits, Zellic, and KALOS reviewed the zkEVM circuits themselves — the cryptographic proofs of execution correctness.
  • OpenZeppelin and Zellic audited the bridge and rollup contracts — the Solidity layer that actually moves funds.
  • Trail of Bits separately analyzed the node implementation — the off-chain infrastructure that produces blocks and proofs.

The Trail of Bits engagement alone produced custom Semgrep rules built specifically for Scroll's codebase, meaning future contributors inherit a static-analysis layer tuned to the project's specific risk surface. OpenZeppelin has run multiple diff audits as the code evolved — not one big audit at launch, but continuous review of pull requests. This is how mature security programs work in traditional software, and it is still rare in crypto, where "we were audited" often means "someone looked at the code once in 2023."

Multi-team independent review matters because circuit bugs are unlike smart contract bugs. A Solidity reentrancy vulnerability can often be discovered by a careful reader. A bug in a PLONKish arithmetization of an EVM opcode requires an auditor who understands both the EVM semantics and the constraint system used to prove them. There are perhaps a few dozen people in the world qualified to find such a bug, and they are spread across Trail of Bits, OpenZeppelin, Zellic, KALOS, and a handful of academic groups. Scroll has engaged most of them.

Proof Generation: The Number That Actually Matters

Early zkEVM prototypes required hours to generate a single block proof. That was a research demo, not a production system. By 2026, the frontier has moved dramatically:

  • Current zkEVM implementations complete proof generation in roughly 16 seconds — a 60x improvement from early designs.
  • Leading teams have demonstrated sub-2-second proof generation, faster than Ethereum's 12-second block times.
  • Scroll's prover sits in the competitive range of this curve, with ongoing work on prover compression and GPU acceleration.

Why does this matter economically? Proof generation cost is the dominant variable cost of a zkEVM. Every second of prover time is electricity and amortized hardware. The difference between 16-second proofs and 2-second proofs is roughly an 8x reduction in the cost to settle a block — which translates directly into lower transaction fees for end users and higher margins for rollup operators.

The more interesting question is whether proof speed is now commoditizing. When every serious zkEVM ships sub-10-second proofs, the differentiator moves back to security, developer experience, and ecosystem — the axes where Scroll's research pedigree and bytecode equivalence compound over time. A year ago, "our proofs are fast" was a legitimate marketing claim. In 2026, it is table stakes.

The TVL Reality Check

Technical elegance does not automatically translate into economic traction. Scroll hit over $748 million in TVL within one year of its October 2023 mainnet launch — briefly establishing itself as the largest zk rollup by TVL. By late 2024, DeFi TVL had compressed to around $152 million after a peak near $980 million in October 2024. As of February 2026, the network has processed over 110 million transactions and supports more than 100 dApps built by 700+ active developers.

Compare the zk-rollup leaderboard in 2026:

  • Linea leads newer zk-rollups with ~$963 million TVL.
  • Starknet holds ~$826 million with ~21.2% YoY growth.
  • zkSync Era has ~$569 million with ~22% YoY growth and captured 25% of on-chain RWA market share in 2025 ($1.9 billion).
  • Cumulative L2 TVL reached $39.39 billion for the 12 months ending November 2025, with the overall L2 ecosystem at roughly $70 billion.

Scroll's position in this pack is middle-of-leaderboard rather than dominant. The gap between the technical moat ("we were built with PSE") and the economic outcome ("we are the #1 zkEVM by TVL") is real — and it is the strategic question facing the team through 2026.

Why the Research Moat Still Matters

The pessimistic read of Scroll's position: in a market where proof generation is commoditizing, where every major zkEVM ships with reputable audits, and where user acquisition comes from incentive programs rather than cryptographic elegance, does the PSE collaboration actually matter? Users do not check which proving system their rollup uses. Developers do not compare audit reports before deploying a stablecoin.

The optimistic read: cryptographic infrastructure is the kind of thing that does not matter until it suddenly matters catastrophically. A serious circuit bug in a competing zkEVM — the kind that allows a prover to forge a state transition — would be an extinction-level event for that chain's TVL and a reallocation moment for the entire ZK rollup category. In that scenario, "built with Ethereum Foundation researchers, audited by four independent circuit security teams, explicit bytecode equivalence with mainnet" becomes the default flight-to-quality destination.

This is not a hypothetical. The optimistic rollup space has had fraud-proof windows precisely because the industry understands that rare, catastrophic failures do happen. The ZK space has been lucky so far — no production zkEVM has yet shipped a verifiable soundness bug that led to user fund loss. When that day comes (and statistically, across six-plus production zkEVMs running for years, something will eventually break), the chains with the deepest research heritage and the most redundant audit stacks will absorb the displaced TVL.

Scroll is positioning for that day.

What This Means for Builders and Infrastructure

For protocol developers choosing a zkEVM in 2026, the calculus has shifted. A year ago, you picked based on proof speed, fees, and token incentives. Today, those factors are increasingly similar across the top six chains. The differentiators that persist:

  • Bytecode equivalence (Scroll, Polygon zkEVM) vs transpilation (zkSync) vs new VM (Starknet) — affects how much of your Ethereum tooling works without modification.
  • Cryptographic heritage — whether your circuits were built by the same community that maintains the proving libraries.
  • Audit depth — single-team vs multi-team, one-time vs continuous.
  • DA layer flexibility — whether you are locked into Ethereum calldata or can use blobs and external DA.

For infrastructure providers, the fragmentation is the story. Six serious zkEVMs, plus optimistic rollups, plus emerging SVM L2s, plus app-chains — each with their own RPC endpoints, indexing requirements, and node software. The winners in this landscape are not the chains themselves but the neutral providers who abstract the complexity away from developers.

BlockEden.xyz provides production-grade RPC and indexing infrastructure across Ethereum, major Layer 2s, and leading alternative chains. If you are building across zkEVMs and need reliable endpoints without operating your own node fleet, explore our API marketplace — it is built for teams who would rather ship product than operate infrastructure.

The Verdict

Scroll's PSE collaboration and bytecode equivalence posture are not going to win the TVL race on their own. Incentive programs, ecosystem partnerships, and institutional integrations matter too, and Scroll is in a fight there against chains with larger treasuries and earlier institutional relationships.

But the underlying claim — that a zkEVM built in tandem with Ethereum Foundation researchers, audited by four independent circuit security teams, and deliberately constrained to mainnet bytecode equivalence is a materially safer piece of cryptographic infrastructure than its competitors — is defensible. In a category where the rare catastrophic failure eventually arrives, that defensibility is worth something. How much it ends up being worth depends on whether the market prices safety before the accident or only after.

For 2026, the Scroll story is the story of whether research-grade security becomes a durable moat or gets outcompeted by faster-shipping teams with shallower cryptographic heritage. It is one of the more interesting experiments running in the L2 space — and the answer will shape how institutional allocators think about zkEVM risk for years.

Sources

ZKsync's 2026 Roadmap: Can Prividium, Airbender, and Elastic Chain Win Back the L2 Race?

· 8 min read
Dora Noda
Software Engineer

Matter Labs just bet the ZKsync franchise on a market that does not yet exist. Instead of chasing Base and Arbitrum on consumer TVL, the April 2026 roadmap points the entire stack at regulated banks, asset managers, and central banks — with privacy as a default setting rather than a premium feature. It is a calculated pivot, and it reveals how much the L2 battleground has changed in a year.

Consider the scoreboard. Arbitrum holds roughly $16.6 billion in TVL, Base sits near $10 billion, and Optimism clears $8 billion. ZKsync Era, despite a lead in zero-knowledge engineering, lingers around $4 billion — a respectable figure that nonetheless reads as a distant fourth in a market where capital concentrates into whichever chain ships fastest. The question Matter Labs is answering is not "how do we catch Base on memecoins?" It is "what is the one L2 that Citi can actually deploy on?"

DuckChain's Bet: Can an EVM Layer-2 Drag Telegram's Billion Users Into Real DeFi?

· 10 min read
Dora Noda
Software Engineer

Telegram has roughly one billion monthly users. TON, the chain Telegram quietly married in 2023, has about 34 million activated wallets. Somewhere in that 30-to-1 gap is the biggest unsolved onboarding problem in crypto — and DuckChain is betting an EVM-compatible Layer-2 is the thing that finally closes it.

DuckChain launched as the first EVM-compatible L2 anchored to TON, built on Arbitrum Orbit, and it has spent the past fifteen months rebranding itself into the "Telegram AI Chain." The pitch is simple to say and very hard to execute: let a Telegram user with a TON Space wallet and some USDT tap into the full Ethereum DeFi stack — Uniswap, Aave, the usual suspects — without ever leaving the messenger. No MetaMask. No seed phrase speed-run. No "bridge to Arbitrum" tutorial.

The question isn't whether the technology works. It's whether the liquidity paradox — users go where liquidity is, liquidity goes where users are — can actually be broken by a chain sitting in the middle.

Ethereum's Busiest Quarter Ever: 200 Million Transactions, and What the Price Isn't Telling You

· 8 min read
Dora Noda
Software Engineer

Ethereum just recorded the most active quarter in its history — and almost nobody noticed.

While ETH traded at roughly half its August 2025 all-time high of $4,946, the network quietly processed 200.4 million transactions in Q1 2026, the first time it has ever crossed the 200-million mark in a single quarter. That's a 43% jump from Q4 2025's 145 million, capping a multi-year U-shaped recovery from the 2023 bear-market trough. The paradox is real: Ethereum's on-chain engine is running hotter than ever while its token price lags. Understanding that paradox is the key to understanding where Ethereum — and the broader blockchain industry — actually stands.

Ethereum Hegota: The Post-Glamsterdam Fork and Ethereum's 18-Month Three-Fork Pipeline

· 8 min read
Dora Noda
Software Engineer

For most of Ethereum's history, a new hard fork was a once-a-year event — a slow, heavy release train that shipped whenever the backlog of Ethereum Improvement Proposals grew too large to defer. That era is over. With the naming of Hegota as the upgrade following Glamsterdam, Ethereum's core developers have now publicly committed to three hard forks inside an 18-month window: Fusaka (shipped December 2025), Glamsterdam (H1 2026), and Hegota (H2 2026). Stacked on top of Pectra (May 2025), that is four protocol upgrades in roughly 20 months — the most concentrated execution cadence since The Merge.

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?

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.