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

marsbitОпубликовано 2026-02-28Обновлено 2026-02-28

Введение

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

Связанные с этим вопросы

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.

Похожее

Huawei Cloud Rejects Token Price War, Zhou Yuefeng Seeks a New Winning Formula for AI Cloud

At the 2026 Huawei Cloud INSPIRE Creator Conference, CEO Zhou Yuefeng outlined Huawei Cloud's distinct strategy in the competitive AI cloud market. Instead of engaging in price wars based on token volume or Maas revenue—a common focus for rivals like Alibaba Cloud and ByteDance's Volcano Engine—Huawei Cloud is shifting the competition towards real-world productivity gains. Zhou highlighted three core differentiators: a fully domestic computing stack (Ascend, Kunpeng), a focus on government and enterprise clients rather than consumer internet, and a deep commitment to open-source ecosystems. To this end, Huawei Cloud launched a suite of new products under the "Agentic Infra" paradigm, including the AICS Lingqu computing cluster, AMS memory storage, and the ModelArts Next platform. These aim to solve enterprise challenges in deploying AI agents, such as latency, memory, scheduling, and security. The strategy further involves creating specialized industry zones ("AI Dream Factories") for sectors like healthcare and embodied intelligence. For example, a smart medical zone developed with Shanghai Ruijin Hospital aims to democratize expert-level diagnostic capabilities. In essence, Huawei Cloud is positioning itself not as a commodity token provider, but as the foundational infrastructure for industrial AI, leveraging its domestic supply chain and hybrid cloud solutions to serve sectors where productivity, not just scale, is the ultimate measure of value.

marsbit9 мин. назад

Huawei Cloud Rejects Token Price War, Zhou Yuefeng Seeks a New Winning Formula for AI Cloud

marsbit9 мин. назад

70% of the Public Opposes AI, Americans Hope the U.S. Loses the AI War

70% of Americans believe AI development is moving too fast, with growing public resistance evolving from online criticism to real-world protests and violence. This widespread anti-AI sentiment stems from fears of job losses, rising utility costs, environmental damage, threats to democracy, and financial instability. Key incidents illustrate the backlash: Google's former CEO Eric Schmidt was loudly booed at a graduation for promoting AI; AI company ads are vandalized; protests and even violent attacks target AI firms and data centers. Polls show deep public pessimism and strong local opposition to data center construction, often surpassing resistance to nuclear power plants. The core grievances are economic and practical: AI is seen as automating jobs, concentrating wealth, and increasing household electricity and water bills due to massive data center resource demands. Environmentalists also oppose AI's high energy use and carbon emissions. This opposition has turned AI into a major political issue in the US. While the Trump administration prioritizes AI innovation for global competition, bipartisan pushback is growing. Democrats and factions within the MAGA movement are forming temporary alliances to support stricter regulations and local bans on new data centers, pressuring the administration to choose between its tech industry backers and its voter base. The situation highlights a profound national divide over AI's future.

marsbit42 мин. назад

70% of the Public Opposes AI, Americans Hope the U.S. Loses the AI War

marsbit42 мин. назад

Agents Take Over Traffic Distribution Power: What Are Tencent, ByteDance, and Alibaba Competing For?

In the race to dominate the AI era's entry point, China's tech giants—Tencent, ByteDance, and Alibaba—are aggressively deploying AI Agents to control the future of traffic distribution. Alibaba is pursuing a dual-track "closed loop + openness" strategy. Its Qianwen app is evolving into a super-Agent integrated across its ecosystem (Taobao, Alipay, etc.) to handle complex tasks like travel planning. Concurrently, it is opening its platform to external brands (Luckin Coffee, KFC) and has launched a B2B Agent platform, "Wukong," targeting enterprise automation. Its other flagship, Quark, aims to be an "AI super search box" for information and tasks. ByteDance is executing an omnipresent "sprawl strategy." Its Doubao app boasts over 300 million monthly active users and is evolving into a default AI entry point for daily life, with plans for paid versions and e-commerce integration. Its core weapon is the Kouzi platform, a visual "AI assembly factory" for developers to build custom Agents. ByteDance is also pushing hardware integration, collaborating on AI phones and developing smart glasses to embed Doubao everywhere. Tencent is playing its long-held "ultimate card" by quietly embedding an AI Agent directly into WeChat. This Agent, accessible via a swipe, can understand user commands and automatically execute tasks by calling upon WeChat's millions of mini-programs (e.g., finding and ordering coffee). This leverages WeChat's unparalleled 1.4-billion-user ecosystem to position the app as an AI-powered "service operating system," a move that could dramatically reshape the competitive landscape. The core battleground is shifting from competing for "user screen time" to competing to be the "default execution layer" for user intent. The business model is evolving from an "attention economy" to an "intent economy," where the Agent that can most efficiently fulfill a user's need gains control over service access and token flow. This represents a fundamental change in how users connect with digital services, making the fight for the Agent入口 (entry point) a pivotal moment for redefining industry leadership in the AI age.

marsbit2 ч. назад

Agents Take Over Traffic Distribution Power: What Are Tencent, ByteDance, and Alibaba Competing For?

marsbit2 ч. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Manyu: восходящая мем-звезда на Ethereum, готовая открыть новую эру культуры Shiba

Manyu - это мемтокен на Ethereum, который приносит децентрализованную культурную и развлекательную ценность через вирусное влияние в соцсетях и вовлечённость сообщества.

1.9k просмотров всегоОпубликовано 2025.11.27Обновлено 2025.11.27

Manyu: восходящая мем-звезда на Ethereum, готовая открыть новую эру культуры Shiba

Неделя обучения по популярным токенам 14: Glamsterdam — самое ожидаемое обновление Ethereum в 2026 году

Ordinals/Runes по-прежнему стимулируют доходы от комиссий за блоки и активность разработчиков, рассматриваются как отправная точка «нативной эмиссии активов» в сети.

1.5k просмотров всегоОпубликовано 2026.04.29Обновлено 2026.04.29

Неделя обучения по популярным токенам 14: Glamsterdam — самое ожидаемое обновление Ethereum в 2026 году

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на ETH (ETH) представлены ниже.

活动图片