Ethereum’s New Scaling Framework: Dual Push on Multi-Dimensional Gas and ZK-EVM

2026-03-05 06:52:12
Intermediate
Ethereum
Vitalik Buterin's latest scaling roadmap clearly distinguishes Ethereum's short-term and long-term expansion paths: In the short term, execution efficiency is enhanced through gas repricing, multidimensional gas mechanisms, block verification parallelization, and ePBS. In the long term, the network relies on ZK-EVM and blobs data architecture to achieve highly scalable networks without full re-execution. Unlike previous single-point optimizations, this is a systematic reconstruction plan centered around verification costs and state growth constraints.

Now, scaling.

There are two buckets here: short-term and long-term.

Short term scaling I’ve written about elsewhere. Basically:

  • Block level access lists (coming in Glamsterdam) allow blocks to be verified in parallel.

  • ePBS (coming in Glamsterdam) has many features, of which one is that it becomes safe to use a large fraction of each slot (instead of just a few hundred milliseconds) to verify a block

  • Gas repricings ensure that gas costs of operations are aligned with the actual time it takes to execute them (plus other costs they impose). We’re also taking early forays into multidimensional gas, which ensures that different resources are capped differently. Both allow us to take larger fractions of a slot to verify blocks, without fear of exceptional cases.

There is a multi-stage roadmap for multidimensional gas.

First, in Glamsterdam, we separate out “state creation” costs from “execution and calldata” costs. Today, an SSTORE that changes a slot from nonzero -> nonzero costs 5000 gas, an SSTORE that changes zero -> nonzero costs 20000. One of the Glamsterdam repricings greatly increases that extra amount (eg. to 60000); our goal doing this + gas limit increases is to scale execution capacity much more than we scale state size capacity, for reasons I’ve written before (

https://ethresear.ch/t/hyper-scaling-state-by-creating-new-forms-of-state/24052). So in Glamsterdam, that SSTORE will charge 5000 “regular” gas and (eg.) 55000 “state creation gas”.

State creation gas will NOT count toward the ~16 million tx gas cap, so creating large contracts (larger than today) will be possible.

One challenge is: how does this work in the EVM? The EVM opcodes (GAS, CALL…) all assume one dimension. Here is our approach. We maintain two invariants:

  • If you make a call with X gas, that call will have X gas that’s usable for “regular” OR “state creation” OR other future dimensions

  • If you call the GAS opcode, it tells you you have Y gas, then you make a call with X gas, you still have at least Y-X gas, usable for any function, after the call to do any post-operations

What we do is, we create N+1 “dimensions” of gas, where by default N=1 (state creation), and the extra dimension we call “reservoir”. EVM execution by default consumes the “specialized” dimensions if it can, and otherwise it consumes from reservoir. So eg. if you have (100000 state creation gas, 100000 reservoir), then if you use SSTORE to create new state three times, your remaining gas goes (100000, 100000) -> (45000, 95000) -> (0, 80000) -> (0, 20000). GAS returns reservoir. CALL passes along the specified gas amount from the reservoir, plus all non-reservoir gas.

Later, we switch to multi-dimensional pricing, where different dimensions can have different floating gas prices. This gives us long-term economic sustainability and optimality (see

https://vitalik.eth.limo/general/2024/05/09/multidim.html). The reservoir mechanism solves the sub-call problem at the end of that article.

Now, for long-term scaling, there are two parts: ZK-EVM, and blobs.

For blobs, the plan is to continue to iterate on PeerDAS, and get it to an eventual end-state where it can ideally handle ~8 MB/sec of data. Enough for Ethereum’s needs, not attempting to be some kind of global data layer. Today, blobs are for L2s. In the future, the plan is for Ethereum block data to directly go into blobs. This is necessary to enable someone to validate a hyperscaled Ethereum chain without personally downloading and re-executing it: ZK-SNARKs remove the need to re-execute, and PeerDAS on blobs lets you verify availability without personally downloading.

For ZK-EVM, the goal is to step up our “comfort” relying on it in stages:

  • Clients that let you participate as an attester with ZK-EVMs will exist in 2026. They will not be safe enough to allow the network to run on them, but eg. 5% of the network relying on them will be ok. (If the ZK-EVM breaks, you will not be slashed, you’ll just have a risk of building on an invalid block and losing revenue)

  • In 2027, we’ll start recommending for a larger minority of the network to run on ZK-EVMs, and at the same time full focus will be on formally verifying, maximizing their security, etc. Even 20% of the network running ZK-EVMs will let us greatly increase the gaslimit, because it allows gas limits to greatly increase while having a cheap path for solo stakers, who are under 20% anyway.

  • When ready, we move to 3-of-5 mandatory proving. For a block to be valid, it would need to contain 3 of 5 types of proofs from different proof systems. By this point, we would expect that all nodes (except nodes that need to do indexing) will rely on ZK-EVM proofs.

  • Keep improving the ZK-EVM, and make it as robust, formally verified, etc as possible. This will also start to involve any VM change efforts (eg. RISC-V)

Disclaimer:

  1. This article is reprinted from [vitalikbuterin]. All copyrights belong to the original author [vitalikbuterin]. If there are objections to this reprint, please contact the Gate Learn team, and they will handle it promptly.
  2. Liability Disclaimer: The views and opinions expressed in this article are solely those of the author and do not constitute any investment advice.
  3. Translations of the article into other languages are done by the Gate Learn team. Unless mentioned, copying, distributing, or plagiarizing the translated articles is prohibited.

Share

Crypto Calendar
Tokenların Kilidini Aç
Wormhole, 3 Nisan'da 1.280.000.000 W token açacak ve bu, mevcut dolaşımdaki arzın yaklaşık %28,39'unu oluşturacak.
W
-7.32%
2026-04-02
Tokenların Kilidini Aç
Pyth Network, 19 May'da 2.130.000.000 PYTH tokenini serbest bırakacak ve bu, mevcut dolaşım arzının yaklaşık %36,96'sını oluşturacak.
PYTH
2.25%
2026-05-18
Tokenların Kilidini Aç
Pump.fun, 12 Temmuz'da 82,500,000,000 PUMP token'ı kilidini açacak ve bu, mevcut dolaşımdaki arzın yaklaşık %23,31'ini oluşturacak.
PUMP
-3.37%
2026-07-11
Token Kilidi Açma
Succinct, 5 Ağustos'ta mevcut dolaşımdaki arzın yaklaşık %104,17'sini oluşturan 208,330,000 PROVE token'ını serbest bırakacak.
PROVE
2026-08-04
sign up guide logosign up guide logo
sign up guide content imgsign up guide content img
Sign Up

Related Articles

What Is Ethereum 2.0? Understanding The Merge
Intermediate

What Is Ethereum 2.0? Understanding The Merge

A change in one of the top cryptocurrencies that might impact the whole ecosystem
2023-01-18 14:25:24
Reflections on Ethereum Governance Following the 3074 Saga
Intermediate

Reflections on Ethereum Governance Following the 3074 Saga

The Ethereum EIP-3074/EIP-7702 incident reveals the complexity of its governance structure: in addition to the formal governance processes, the informal roadmaps proposed by researchers also have significant influence.
2024-06-12 02:04:52
Our Across Thesis
Intermediate

Our Across Thesis

This article analyzes the tremendous potential for the development of the Layer 2 (L2) market and the accompanying bridging needs among various L2 solutions. It delves into the current status, potential, and risks of the cross-chain protocol Across Protocol in this market.
2024-01-05 01:34:41
What is Neiro? All You Need to Know About NEIROETH in 2025
Intermediate

What is Neiro? All You Need to Know About NEIROETH in 2025

Neiro is a Shiba Inu Dog that inspired the launch of Neiro tokens across different blockchains. As of 2025, Neiro Ethereum (NEIROETH) has evolved into a leading meme coin with a $215 million market cap, 87,000+ holders, and listings on 12 major exchanges. The ecosystem now includes a DAO for community governance, an official merchandise store, and a mobile app. NEIROETH has implemented layer-2 solutions to enhance scalability and secured its position in the top 10 dog-themed meme coins by market capitalization, backed by a vibrant community and leading crypto influencers.
2025-05-23 06:58:17
What is Polygon 2.0 (POL)? From MATIC to POL (2025)
Intermediate

What is Polygon 2.0 (POL)? From MATIC to POL (2025)

Polygon 2.0 (POL) represents the next evolution in scalable blockchain solutions. Learn about its features and how it's advancing the decentralized ecosystem, including the successful 2025 MATIC to POL transition with 85% conversion rate, enhanced token utility, AggLayer implementation, and expanded governance capabilities across the Polygon ecosystem.
2025-06-17 10:30:36
An Introduction to ERC-20 Tokens
Beginner

An Introduction to ERC-20 Tokens

ERC-20 has emerged as the technical standard used for all smart contracts on the Ethereum Network.
2023-01-12 14:48:54