In the next 5 years, Vitalik will expand Ethereum in this way
On February 27, 2026, Vitalik Buterin published a lengthy article titled "Hyper-scaling state by creating new forms of state" on Ethereum Research.
In this article, Vitalik Buterin further outlined the scaling path for Ethereum. This article discusses Ethereum's scaling not only from a technical perspective but also from an overall architectural viewpoint, providing a phased scaling plan aimed at laying the foundation for Ethereum to continuously expand its network capacity in the coming years.
At the same time, he also posted a tweet on X, further explaining this article. We attempt to understand in simple terms what Vitalik's newly proposed scaling plan is and why it is necessary.
Short-term and Long-term Expansion of Execution Resources and Data Resources
Vitalik pointed out at the beginning of the article, "To scale Ethereum in the next five years, we need to scale three types of resources":
Execution resources: EVM computation, signature verification, etc.
Data resources: Transaction senders, receivers, signatures, etc.
State resources: Account balances, code, storage
The first two have short-term and long-term scaling plans.
For execution resources, short-term scaling can achieve about 10-30 times growth through Block Access Lists (BAL), ePBS, and gas fee repricing, while long-term scaling can achieve about 1000 times growth through ZK-EVM. Additionally, for certain specific types of computations (signatures, SNARK/STARK), off-chain aggregation can enhance performance by about 10,000 times.
For data resources, short-term scaling can achieve about 10-20 times growth through p2p improvements and multi-dimensional gas, while long-term scaling can achieve about 500 times growth through Blobs + PeerDAS.
Short-term scaling focuses on making Ethereum run faster. Currently, Ethereum is slow because the current verification method is serial—checking transactions one by one. If a transaction gets stuck, the entire verification process gets stuck.
Therefore, the upcoming Glamsterdam upgrade this year will introduce Block Access Lists (BAL) and ePBS.
Block Access Lists allow block packagers to inform validators in advance: "The transactions in this block will access these accounts and storage locations." With this information, validators can prepare in advance by loading this data from the hard drive into memory. Then, validators can check multiple transactions in parallel instead of one by one. It's like an assembly line in a factory: previously, one worker was responsible for the entire product, but now multiple workers handle different parts simultaneously.
ePBS separates the block packaging and verification process—block builders are responsible for packaging transactions, proposers are responsible for proposing blocks, and validators are responsible for verifying blocks. Each role focuses on its own work, allowing block builders to package more transactions aggressively because proposers and validators will help check, alleviating concerns about security.
Gas fee repricing + multi-dimensional gas can be considered the "core technique." Currently, all operations on Ethereum use the same gas fee. However, Vitalik's idea is that different operations should have different prices.
In particular, creating new states (such as creating new accounts or deploying new contracts) should incur a special "state creation fee." This is because creating new states is the most expensive operation. It not only consumes computational resources but also storage resources. Moreover, this cost is permanent—once created, the state will always exist.
Thus, Vitalik's idea is to make creating new states more expensive while making ordinary transactions cheaper.
The method to achieve this is the "reservoir mechanism." Imagine there are two buckets, one holding "state creation fees" and the other holding "ordinary gas fees." When contracts call each other, gas will automatically borrow from both buckets, ensuring that there is no confusion.
Ordinary users' transactions will become cheaper because these transactions do not incur "state creation fees." Developers who want to create new states will need to pay higher fees. This way, the overall capacity of the network will surge, but the growth of states will be controlled, preventing the hard drives of full nodes from exploding.
Long-term expansion aims to strengthen the mainnet itself and reduce reliance on Layer 2. This includes a phased rollout of Blobs + PeerDAS and ZK-EVM.
Blobs, a form of temporary large file storage, are currently mainly used by Layer 2. In the future, the Ethereum mainnet will also use Blobs to store data. However, this raises a problem—if every node has to download all the Blobs, the network will be overwhelmed.
This is where PeerDAS comes in—there's no need to download all the data, only a small portion. It's like a sampling survey; you don't need to ask everyone, just a small group to infer the situation of the entire population. Combined with ZK proofs, even if you only download 1/16 of the total data, you can still verify the integrity of the data.
Next is the phased rollout of ZK-EVM, which allows validating a block without needing to re-execute all transactions in the block. Nodes can simply trust the ZK proof, reducing the verification cost from "executing all transactions" to "verifying a ZK proof."
Vitalik's plan is for some nodes to trial ZK verification in 2026. By 2027, more nodes will be encouraged to use it. Ultimately, for a block to be valid, it must contain three out of five proof types from different proof systems. He expects that all nodes (except indexing nodes) will eventually rely on ZK-EVM proofs.
State Expansion Without a "Magic Bullet"
Now let's look at the "state resources" that have not been discussed in the short-term and long-term expansions. Although in the short term, it is still possible to improve by about 5-30 times through synchronization with Block Access Lists, p2p improvements, and database optimizations, what about the long term?
Vitalik's answer is, there is none.
Why is it so difficult to scale state resources? The state of Ethereum is like a massive database. This database contains all account balances, all contract codes, and all storage location data.
Currently, this database is not large, only about 100 GB, but if the state expands 20 times, it would be 2 TB. What about in a longer time frame? 8 TB?
The problem is not that hard drives can't hold it, but rather:
Database efficiency is affected: Modern databases use tree structures (like Merkle trees) to organize data. When writing new data, the entire tree needs to be updated. This means that if you want to make X updates, it results in X operations at the database level, rather than just updating once and performing one database operation. The more updates, the more operations, and writing will slow down dramatically.
Synchronization difficulties: A newly joined node in the Ethereum network needs to download the entire state to validate new blocks. If the data size reaches 8 TB, most people's current internet speeds would take a long time to download.
Solutions do exist, but Vitalik believes they all have issues:
"Strong state statelessness": Nodes do not need to store the complete state, only requiring users to provide Merkle proofs. Vitalik believes this solution has issues with centralization of state storage, dynamic storage access leading to transaction failures, and bandwidth cost problems.
"State expiration": Infrequently accessed states are automatically removed from active status. Nodes only need to store the most recently accessed states, significantly reducing storage space. Vitalik believes there is a fundamental "existence problem," which is how to prove that a state "never existed" when creating a new state. For example, when creating a new account, it would require proving that the new account address has never been created on Ethereum. This means that every new account creation would need to check 10 years of historical data, making the process complex and expensive.
Vitalik's ultimate approach is to combine these two solutions and propose several new forms of state, which represents a comprehensive change to the architecture of Ethereum's state resources:
Temporary storage: A type of storage that automatically expires. For example, a new tree could be created that resets every month. This storage can be used for temporary data, such as order books, liquidity pools, and temporary counters, which typically do not require permanent storage. After a month, old orders expire, and new liquidity pools are created.
Periodic storage: Similar to temporary storage, but with a longer period, such as one year.
Restricted storage: Certain storage can only be accessed in specific ways. For example, the balance storage of an ERC20 token may only be accessible through specific interfaces. This way, the system can optimize for this type of storage.
At the same time, existing forms of state will be retained. Thus, execution may become 1000 times cheaper (through ZK-EVM), but creating new states may only become 20 times cheaper.
Vitalik believes that with new forms of state, developers will have choices. They can continue using existing forms of state but pay higher fees, or redesign applications to use new forms of state for lower fees. For common use cases (like ERC20 balances, NFTs), there will be standardized workflows, while for more complex use cases (like DeFi), developers will need to find ways to optimize themselves.
This strategy is quite interesting, suggesting that developers can think creatively to lower costs, benefiting the broader Ethereum user base.
You may also like

ChainCatcher Hong Kong Themed Forum Highlights: Decoding the Growth Engine Under the Integration of Crypto Assets and Smart Economy

Why can this institution still grow by 150% when the scale of leading crypto VCs has shrunk significantly?

Anthropic's $1 trillion, compared to DeepSeek's $100 billion

Geopolitical Risk Persists, Is Bitcoin Becoming a Key Barometer?

Annualized 11.5%, Wall Street Buzzing: Is MicroStrategy's STRC Bitcoin's Savior or Destroyer?

An Obscure Open Source AI Tool Alerted on Kelp DAO's $292 million Bug 12 Days Ago

Mixin has launched USTD-margined perpetual contracts, bringing derivative trading into the chat scene.
The privacy-focused crypto wallet Mixin announced today the launch of its U-based perpetual contract (a derivative priced in USDT). Unlike traditional exchanges, Mixin has taken a new approach by "liberating" derivative trading from isolated matching engines and embedding it into the instant messaging environment.
Users can directly open positions within the app with leverage of up to 200x, while sharing positions, discussing strategies, and copy trading within private communities. Trading, social interaction, and asset management are integrated into the same interface.
Based on its non-custodial architecture, Mixin has eliminated friction from the traditional onboarding process, allowing users to participate in perpetual contract trading without identity verification.
The trading process has been streamlined into five steps:
· Choose the trading asset
· Select long or short
· Input position size and leverage
· Confirm order details
· Confirm and open the position
The interface provides real-time visualization of price, position, and profit and loss (PnL), allowing users to complete trades without switching between multiple modules.
Mixin has directly integrated social features into the derivative trading environment. Users can create private trading communities and interact around real-time positions:
· End-to-end encrypted private groups supporting up to 1024 members
· End-to-end encrypted voice communication
· One-click position sharing
· One-click trade copying
On the execution side, Mixin aggregates liquidity from multiple sources and accesses decentralized protocol and external market liquidity through a unified trading interface.
By combining social interaction with trade execution, Mixin enables users to collaborate, share, and execute trading strategies instantly within the same environment.
Mixin has also introduced a referral incentive system based on trading behavior:
· Users can join with an invite code
· Up to 60% of trading fees as referral rewards
· Incentive mechanism designed for long-term, sustainable earnings
This model aims to drive user-driven network expansion and organic growth.
Mixin's derivative transactions are built on top of its existing self-custody wallet infrastructure, with core features including:
· Separation of transaction account and asset storage
· User full control over assets
· Platform does not custody user funds
· Built-in privacy mechanisms to reduce data exposure
The system aims to strike a balance between transaction efficiency, asset security, and privacy protection.
Against the background of perpetual contracts becoming a mainstream trading tool, Mixin is exploring a different development direction by lowering barriers, enhancing social and privacy attributes.
The platform does not only view transactions as execution actions but positions them as a networked activity: transactions have social attributes, strategies can be shared, and relationships between individuals also become part of the financial system.
Mixin's design is based on a user-initiated, user-controlled model. The platform neither custodies assets nor executes transactions on behalf of users.
This model aligns with a statement issued by the U.S. Securities and Exchange Commission (SEC) on April 13, 2026, titled "Staff Statement on Whether Partial User Interface Used in Preparing Cryptocurrency Securities Transactions May Require Broker-Dealer Registration."
The statement indicates that, under the premise where transactions are entirely initiated and controlled by users, non-custodial service providers that offer neutral interfaces may not need to register as broker-dealers or exchanges.
Mixin is a decentralized, self-custodial privacy wallet designed to provide secure and efficient digital asset management services.
Its core capabilities include:
· Aggregation: integrating multi-chain assets and routing between different transaction paths to simplify user operations
· High liquidity access: connecting to various liquidity sources, including decentralized protocols and external markets
· Decentralization: achieving full user control over assets without relying on custodial intermediaries
· Privacy protection: safeguarding assets and data through MPC, CryptoNote, and end-to-end encrypted communication
Mixin has been in operation for over 8 years, supporting over 40 blockchains and more than 10,000 assets, with a global user base exceeding 10 million and an on-chain self-custodied asset scale of over $1 billion.

$600 million stolen in 20 days, ushering in the era of AI hackers in the crypto world

Vitalik's 2026 Hong Kong Web3 Summit Speech: Ethereum's Ultimate Vision as the "World Computer" and Future Roadmap

On the same day Aave introduced rsETH, why did Spark decide to exit?

Full Post-Mortem of the KelpDAO Incident: Why Did Aave, Which Was Not Compromised, End Up in Crisis Situation?

After a $290 million DeFi liquidation, is the security promise still there?

ZachXBT's post ignites RAVE nearing zero, what is the truth behind the insider control?

Vitalik 2026 Hong Kong Web3 Carnival Speech Transcript: We do not compete on speed; security and decentralization are the core

In-depth Analysis of RAVE Events: Short Squeeze, Crash, and Quantitative Financial Models of Liquidity Manipulation

Eve of Ceasefire, US Military Fires on Iranian Vessel | Rewire News Morning Brief

Figma's stock price drops over 7%, will Claude Design be the terminator?





