Ethereum Releases Scaling Roadmap: What's Different This Time?

marsbitPublished on 2026-02-28Last updated on 2026-02-28

Abstract

Ethereum has released a detailed scaling roadmap, outlining both short-term and long-term strategies to expand network capacity without compromising security or decentralization. In the short term, key upgrades include block-level access lists and ePBS (enabled in the upcoming Glamsterdam upgrade) to allow parallelized block validation and more efficient use of slot time. Gas repricing and the introduction of multidimensional gas will separate execution costs from state creation costs, significantly increasing gas limits for execution while controlling state growth. A new "reservoir" gas mechanism will ensure backward compatibility with the EVM. For long-term scaling, Ethereum will rely on two core technologies: Blobs and ZK-EVM. PeerDAS will be iterated to achieve ~8 MB/sec data throughput, enabling Ethereum block data to be directly written to blobs. This, combined with ZK-SNARKs, will allow validation without full execution or data download. ZK-EVM adoption will be phased: from initial client support in 2026, to wider node adoption in 2027, and eventually a 3-of-5 mandatory proof system requiring multiple attestations for block validity. The long-term vision includes continued improvements in formal verification and potential VM-level changes.

Editor's Note: As the Ethereum ecosystem continues to expand, how to achieve network scaling without sacrificing security and decentralization has become a core issue. In this article, Vitalik Buterin further outlines Ethereum's scaling path: in the short term, improving execution efficiency through technical enhancements like Gas mechanism optimization and block validation parallelization; in the long term, relying on ZK-EVM and blobs data architecture to drive network capacity growth.

Overall, this roadmap provides a phased approach to scaling, aiming to lay the foundation for Ethereum to continuously increase network capacity in the coming years.

Below is the original text:

Now let's talk about scaling. This is mainly divided into two parts: short-term scaling and long-term scaling.

Short-Term Scaling

Regarding short-term scaling, I have written about it elsewhere. The core ideas are roughly as follows:

· Block-level access lists (to be introduced in the Glamsterdam upgrade) can enable parallelization of block validation.

· ePBS (also to be introduced in Glamsterdam) has several features, one of which is: it allows us to safely use a larger proportion of time per slot to validate blocks, rather than just a few hundred milliseconds as is currently the case.

· Gas repricing will ensure that the gas cost of various operations aligns with their actual execution time (and other costs they incur). We are also exploring a multidimensional gas mechanism in the early stages, allowing different resources to have separate caps. Combining these two can enable us to use a larger proportion of slot time for block validation without worrying about extreme cases.

Regarding multidimensional gas, we have developed a phased roadmap. The first phase is in the Glamsterdam upgrade, separating "state creation cost" from "execution and calldata cost."

For example, currently: an SSTORE operation that changes a storage slot from non-zero → non-zero costs 5000 gas; if from zero → non-zero, it costs 20000 gas.

In a gas repricing during Glamsterdam, this additional cost will be significantly increased (e.g., to 60000). The goal is to increase the gas limit while allowing execution capacity to scale much faster than state size.

For the reasons, I have written about it here: https://ethresear.ch/t/hyper-scaling-state-by-creating-new-forms-of-state/24052

Therefore, in Glamsterdam: this SSTORE operation will consume 5000 "regular gas" and, for example, 55000 "state creation gas."

Note: State creation gas will not count toward the ~16 million transaction gas limit.

This means: It will be possible to create larger contracts than currently possible.

How is Multidimensional Gas Implemented in the EVM?

This raises a question: The EVM is designed with the default assumption that gas is one-dimensional, e.g., GAS, CALL, and other opcodes are based on this assumption.

Our solution is to maintain two invariants:

If you initiate a call with X gas, that call will have X gas available for "regular operations," or "state creation," or other dimensions that may be added in the future.

If the GAS opcode tells you that you have Y gas, and then you initiate a call that consumes X gas, after the call returns, you will still have at least Y − X gas available for subsequent operations.

The specific implementation is: We introduce N+1 gas dimensions. By default, N = 1 (state creation), and the additional dimension is called the reservoir.

The EVM execution logic is:

If possible, consume gas from the dedicated dimension first.

If insufficient, consume from the reservoir.

For example, if you have: (100000 state creation gas, 100000 reservoir)

If you use SSTORE to create new state three times, the gas change process is: (100000, 100000)→ (45000, 95000)→ (0, 80000)→ (0, 20000)

Under this design:

The GAS opcode returns the reservoir value.

CALL will pass the specified amount of gas from the reservoir, along with all non-reservoir gas.

Multidimensional Gas Pricing

Later, we will further introduce multidimensional pricing, allowing different resource dimensions to have different floating gas prices.

This will bring:

Better long-term economic sustainability

Optimal resource allocation efficiency

For details: https://vitalik.eth.limo/general/2024/05/09/multidim.html

And the reservoir mechanism just solves the sub-call problem mentioned at the end of that article.

Long-Term Scaling

Long-term scaling mainly includes two directions: ZK-EVM and Blobs.

Blobs

For blobs, we plan to continuously iterate on PeerDAS, ultimately aiming for a data throughput capacity of about 8 MB/second.

This scale:

Is sufficient to meet Ethereum's own needs

Is not intended to be a "global data layer."

Currently, blobs are mainly used for L2. The future plan is to have Ethereum block data itself written directly to blobs.

The purpose of this is to enable people to verify a highly scaled Ethereum network without downloading and re-executing the entire chain:

ZK-SNARKs eliminate the need for re-execution

PeerDAS + blobs allow verification of data availability without downloading all the data

ZK-EVM

For ZK-EVM, our goal is to gradually increase the network's reliance on it.

2026: Clients supporting ZK-EVM will emerge, allowing nodes to use ZK-EVM for attestation. However, they will not be secure enough for the entire network to rely on. But it would be acceptable if about 5% of the network uses them. (If the ZK-EVM fails, you won't be slashed, but you might build on an invalid block and lose profits.)

2027: We will begin to recommend a larger proportion of nodes to run ZK-EVM, while focusing on formal verification and security improvements. Even if only 20% of the network uses ZK-EVM, it can allow us to significantly increase the gas limit, as this provides a low-cost verification path for solo stakers, who themselves make up less than 20% of the network.

After technical maturity: We will introduce a 3-of-5 mandatory proof mechanism. That is, a block must include at least 3 proofs from 5 different proof systems to be considered valid. By then, we expect that most nodes, except those needing to index, will rely on ZK-EVM proofs.

Long-term: Continue to improve ZK-EVM, making it more robust and conducting stricter formal verification. This phase may also involve changes at the virtual machine level, such as moving towards RISC-V.

For details: https://ethresear.ch/t/hyper-scaling-state-by-creating-new-forms-of-state/24052

Related Questions

QWhat are the two main parts of Ethereum's scaling roadmap as discussed by Vitalik Buterin?

AThe two main parts are short-term scaling and long-term scaling.

QWhat is the purpose of introducing multidimensional gas pricing in Ethereum's Glamsterdam upgrade?

AThe purpose is to separate 'state creation cost' from 'execution and calldata cost', allowing execution capacity to scale much faster than state size scaling.

QHow does the reservoir mechanism work in the multidimensional gas system?

AThe reservoir mechanism prioritizes consuming dedicated dimension gas first, and if insufficient, it consumes from the reservoir. The GAS opcode returns the reservoir value, and CALL operations pass a specified amount of gas from the reservoir along with all non-reservoir gas.

QWhat is the target data throughput capacity for blobs with the planned PeerDAS iterations?

AThe target data throughput capacity for blobs is about 8 MB per second.

QWhat is the long-term goal for ZK-EVM adoption in Ethereum's scaling plan?

AThe long-term goal is to introduce a 3-of-5 mandatory proof mechanism where a block must include at least 3 proofs from 5 different proof systems to be considered valid, with most nodes relying on ZK-EVM proofs once the technology matures.

Related Reads

From Banning Doubao to Embracing Honor: Why Did WeChat Suddenly 'Change Its Face'?

The article explores the sudden shift in WeChat's strategy towards AI assistants from mobile phone manufacturers, transitioning from strict opposition to active collaboration. For over a year, WeChat fiercely resisted attempts by phone AI assistants (like ByteDance's Doubao in late 2025) to control its features via GUI automation ("simulated clicking"), citing security and data control concerns. This stance created a significant barrier for system-level AI integration. Now, Tencent has initiated A2A (Agent-to-Agent) partnerships with major phone brands like Honor, Xiaomi, OPPO, and vivo. This model allows a phone's system AI (e.g., Honor's YOYO) to parse a user's voice command and send a structured request directly to WeChat's own internal AI agent via secure APIs. WeChat then executes the action (e.g., sending a message) and returns the result. The article attributes Tencent's "change of face" to strategic pressure. While leading in social app usage, Tencent trails rivals like ByteDance and Alibaba in standalone AI app popularity. WeChat, with its vast mini-program ecosystem, is Tencent's key asset for an AI comeback. The upcoming WeChat AI agent aims to handle tasks like booking and payments within the app. However, phone system assistants remain the primary AI entry point for most users. The A2A collaboration allows Tencent to extend WeChat's AI reach to this crucial system layer while maintaining control over its core functions and data. For phone manufacturers, embracing A2A is a pragmatic move. The GUI route proved unviable due to WeChat's blocks. A2A offers a compliant path to integrate a vital service, enhancing their AI assistants' usefulness. It allows them to focus on developing their own AI ecosystems for other services while cooperating on WeChat access. The collaboration is framed as a mutual, strategic necessity: Tencent gains a distribution channel, and manufacturers gain a key functionality. The partnership relies on a "dual authorization" mechanism for security, requiring both user and app consent for each action. While questions about long-term data privacy practices remain, experts note A2A is more secure and compliant than GUI automation. Ultimately, this cooperation is seen as a tentative, calculated truce. Tencent's long-term goal is to make WeChat an AI-powered "service OS." Phone manufacturers aim to make their system AI the central user interface. Their paths may converge or clash in the future, but for now, the A2A deal represents the opening chapter in the battle for the AI-era user入口, driven by necessity and strategic calculus on both sides.

marsbit54m ago

From Banning Doubao to Embracing Honor: Why Did WeChat Suddenly 'Change Its Face'?

marsbit54m ago

On-Chain Figures on the Eve of Kickoff: 1.6 Billion Traded Before the World Cup Even Begins

"On-Chain Numbers on the Eve of the World Cup: $1.6 Billion Traded Before Kick-off" Analysis of on-chain markets before the 2026 FIFA World Cup reveals significant crypto integration into football. The most striking figure is the approximately **$1.6 billion** in total trading volume on the single "World Cup Winner" contract on the Polymarket prediction market platform, accumulated before a single match was played. This represents explosive growth for a sector whose annual volume surged from ~$16B in 2024 to ~$64B in 2025. The ecosystem is maturing beyond speculation. Key developments include: 1) **Infrastructure upgrades** like Polymarket's migration to native, regulated USDC stablecoin for settlements; 2) **Reliable data oracles**, such as Chainlink, being used to resolve real-world match outcomes on-chain; and 3) **Official recognition**, with FIFA appointing its first-ever "Prediction Markets" partner. Over 100 contracts now cover everything from the outright winner to individual match results and even non-sporting risks like venue relocation. This evolution marks a fundamental shift. While crypto firms are absent from FIFA's top-tier sponsor list, the technology has deeply penetrated the tournament's financial and predictive infrastructure through regulated stablecoin settlements, decentralized oracles, and new official partnership categories. The regulatory landscape remains complex and varies by jurisdiction, but on-chain markets for the World Cup are already a multi-billion-dollar reality.

marsbit1h ago

On-Chain Figures on the Eve of Kickoff: 1.6 Billion Traded Before the World Cup Even Begins

marsbit1h ago

From SpaceX's IPO to the Future of Crypto: Which Crypto Sectors Will Host the Trillion-Dollar Narrative?

From the SpaceX IPO, which targets a $750 billion raise at a $1.77 trillion valuation, we can extrapolate capital flow trends relevant to crypto. The focus shifts from speculative narratives to foundational infrastructure and real-world asset (RWA) integration. Key crypto sectors poised to benefit include: 1. **AI Infrastructure**: The narrative is moving from consumer-facing AI applications to underlying, scarce resources like compute power and decentralized GPU networks (e.g., TAO, RENDER, AKT, IO). These protocols are positioning as the essential "picks and shovels" providers for the AI economy. 2. **Real-World Assets (RWA)**: Beyond tokenized treasury bonds, RWA's future lies in on-chain equity and pre-IPO assets like SpaceX. This could democratize access to high-growth assets and reshape global capital flows, benefiting infrastructure projects like ONDO, LINK, and Plume that facilitate issuance, data, and liquidity. 3. **Core Financial Infrastructure**: Stablecoins, payment networks, and DePIN (Decentralized Physical Infrastructure Networks) are critical for settling the future on-chain economy. Their role expands from internal trading tools to foundational layers for global finance, AI systems, and real-world asset networks, leading to potential value reassessment. In summary, the next cycle may prioritize long-term infrastructure value—AI compute, asset tokenization networks, and settlement layers—over short-lived application hype, mirroring the broader market's shift towards funding the foundational systems of the future.

marsbit2h ago

From SpaceX's IPO to the Future of Crypto: Which Crypto Sectors Will Host the Trillion-Dollar Narrative?

marsbit2h ago

Trading

Spot
Futures

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of ETH (ETH) are presented below.

活动图片