In the next 5 years, Vitalik will scale Ethereum like this
On February 27, 2026, Vitalik Buterin published a lengthy article on Ethereum Research titled "Hyper-scaling state by creating new forms of state."
In this article, Vitalik Buterin further outlined Ethereum's scaling path. This piece is not just a technical discussion of Ethereum's scalability but also provides a phased approach to scaling from a holistic architectural perspective, aiming to provide a foundation for continuously expanding the network's capacity over the next few years.
Additionally, he also tweeted about this article on Twitter, further elaborating on its content. We are trying to understand in simple terms what Vitalik's new scaling proposal is and why it is being done.
Short-term and Long-term Expansion of Execution and Data Resources
In the opening of the lengthy article, Vitalik pointed out that "to scale Ethereum over the next five years, three resources need to be scaled":
- 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, in the short term, approximately 10-30x growth will be achieved through Block Access Lists (BAL), ePBS, and Gas Fee Repricing, while in the long term, approximately 1000x growth will be achieved through ZK-EVM, and for certain types of computation (signatures, SNARK/STARK), off-chain aggregation can boost performance by around 10000x.
For data resources, in the short term, approximately 10-20x growth will be achieved through p2p improvements and multi-dimensional Gas, while in the long term, approximately 500x growth will be achieved through Blobs + PeerDAS.
Short-term expansion aims to make Ethereum run faster. Ethereum is slow now because the current validation is serial—one transaction at a time. If a transaction gets stuck, the entire validation process gets stuck.
Therefore, in the upcoming Glamsterdam upgrade later this year, Block Access Lists (BAL) and ePBS will be introduced.
The Block Access List allows the block producer 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 disk into memory. Then, validators can check multiple transactions in parallel instead of one by one. It's like a factory assembly line: instead of one worker handling the entire product, now multiple workers process different parts simultaneously.
ePBS separates the block packaging and validation processes—the block builder is responsible for packing transactions, the prover proposes the block, and validators validate the block. Each role does its own job well, allowing the block builder to more aggressively pack more transactions because the proposer and validators help validate, eliminating security concerns.
Gas Fee repricing + Multi-dimensional Gas could be considered a "core move." Currently, all operations in Ethereum use the same Gas fee. However, Vitalik's idea is that different operations should have different prices.
In particular, creating new state (such as creating a new account, deploying a new contract) should have a special "state creation fee" because creating new state is the most expensive operation. It consumes not only computing resources but also storage resources. Moreover, this cost is permanent—once created, this state will exist indefinitely.
Therefore, Vitalik's idea is to make creating new state more expensive while making ordinary transactions cheaper.
The implementation method is the "reservoir mechanism." Imagine two buckets, one holding the "state creation fee" and the other holding the "ordinary Gas fee." When contracts call each other, Gas will automatically borrow from both buckets to ensure orderly execution.
Transactions from regular users will become cheaper because they do not need to pay the "state creation fee." Developers wanting to create new state will need to pay a higher fee. This way, the overall network capacity expands significantly, but state growth is controlled to prevent full node disk explosions.
The long-term expansion plan is for the mainnet itself to grow stronger and reduce reliance on Layer 2. This includes Blobs + PeerDAS and the phased rollout of ZK-EVM.
Blobs, a temporary large file storage, currently used mainly for Layer 2. In the future, the Ethereum mainnet itself will also use Blobs for data storage. However, a problem arises—if every node has to download all the Blobs, the network will be overwhelmed.
This is where PeerDAS comes in—no need to download all data, just a small part. Similar to sampling surveys, not everyone needs to be asked; just a small group can infer the situation of the entire population. Combined with ZK proof, even if only 1/16 of all data is downloaded, you can confirm data integrity.
Next is the phased rollout of ZK-EVM, which makes validating a block no longer require re-executing all transactions in the block. Nodes simply need to trust the ZK proof, reducing the cost of validation from "executing all transactions" to "validating a ZK proof."
Vitalik's plan is to have some nodes trial ZK validation by 2026. By 2027, more nodes are encouraged to use it. Finally, for a block to be valid, it must contain 3 out of 5 proof types from different proof systems. He anticipates that all nodes (excluding archive nodes) will eventually rely on ZK-EVM proofs.
No "Magic Bullet" for State Expansion
Now let's look at the "state resources" in short and long-term scalability that haven't been discussed yet. Although in the short term, improvements can still be made by synchronizing with the block access list, P2P enhancements, and database optimizations to achieve about a 5-30x improvement, what about the long term?
Vitalik's answer is, none.
Why is state expansion so difficult? Ethereum's state is like a huge database that contains all account balances, contract codes, and storage data of all positions.
Currently, the database is not large, only about 100 GB, but if the state is expanded 20 times, it will be 2 TB. What about a longer period? 8 TB?
The issue is not about the disk space, but:
- Database efficiency is affected: Modern databases use tree structures (such as Merkle trees) to organize data. When writing new data, the entire tree needs to be updated. This means that if you need to do X updates, at the database level, it will be X operations instead of one update operation. The more updates, the more operations, and the write speed will slow down significantly.
- Difficulty in synchronization: A new node joining 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 speed would take a very long time.
There are solutions, but Vitalik believes they all have issues:
- "Strong statelessness": Nodes do not need to store the complete state, only requiring users to provide a Merkle proof. Vitalik believes this solution suffers from centralized state storage, dynamic storage access leading to transaction failures, and bandwidth cost problems.
- "State expiry": Inactive states are automatically removed from the active state. Nodes only need to store the most recently accessed states, significantly reducing storage space. Vitalik believes there is a fundamental "existential problem" wherein, when creating a new state, proving that a state "has never existed" poses a challenge. For example, when creating a new account, it would need to be proven that the new account address has never been created on Ethereum. This implies that creating each new account would require checking 10 years of historical data, making new account creation complex and expensive.
Vitalik's ultimate approach is to combine these two solutions, proposing several new forms of state, which represent an overarching change to Ethereum's state resource architecture:
- Ephemeral Storage: Storage that automatically expires. For example, a new tree could be created that resets every month. This type of storage can be used for temporary data, order books, liquidity pools, temporary counters, and other data that typically do not need to be stored permanently. After a month, old orders expire, and new liquidity pools are created.
- Periodic Storage: Similar to ephemeral storage but with a longer cycle, such as 1 year.
- Restricted Storage: Some storage can only be accessed in specific ways. For example, the balance storage of an ERC20 token may only be accessed through specific interfaces. This way, the system can optimize this type of storage.
Simultaneously, retaining the existing forms of state. This means execution may be made 1000 times cheaper (through ZK-EVM), while creating new states may only be 20 times cheaper.
Vitalik believes that with these new forms of state, developers have choices. They can either continue to use the existing state forms but pay higher fees, or redesign their applications using the new state forms to achieve lower fees. For common use cases (such as ERC20 balances, NFTs), there will be standardized workflows, while for more complex use cases (such as DeFi), developers will need to find ways to optimize on their own.
This strategy is quite interesting, as it requires developers to put on their thinking caps to reduce costs, ultimately benefiting the broader Ethereum user base.
You may also like

Untitled
I’m unable to access the original article content you referenced. Please provide specific details or another article so…

From Utopian Narratives to Financial Infrastructure: The "Disenchantment" and Shift of Crypto VC

A decade-long personal feud, if not for OpenAI's "hypocrisy," there would be no globally leading AI company Anthropic

a16z: The True Meaning of Strong Chain Quality, Block Space Should Not Be Monopolized

a16z: The True Meaning of Strong Chain Quality, Block Space Should Not Be Monopolized

2% user contribution, 90% trading volume: The real picture of Polymarket

Trump Can't Take It Anymore, 5 Signals of the US-Iran Ceasefire

Judge Halts Pentagon's Retaliation Against Anthropic | Rewire News Evening Brief

Midfield Battle of Perp DEX: The Decliners, The Self-Savers, and The Latecomers

Iran War Stalemate: What Signal Should the Market Follow?

Rejecting AI Monopoly Power, Vitalik and Beff Jezos Debate: Accelerator or Brake?

Insider Trading Alert! Will Trump Call a Truce by End of April?

After establishing itself as the top tokenized stock, does Ondo have any new highlights?

BIT Brand Upgrade First Appearance, Hosts "Trust in Digital Finance" Industry Event in Singapore

OpenClaw Founder Interview: Why the US Should Learn from China on AI Implementation
WEEX AI Wars II: Enlist as an AI Agent Arsenal and Lead the Battle
Where the thunder of legions falls into a hallowed hush, the true kings of arena are crowned in gold and etched into eternity. Season 1 of WEEX AI Wars has ended, leaving a battlefield of glory. Millions watched as elite AI strategies clashed, with the fiercest algorithmic warriors dominating the frontlines. The echoes of victory still reverberate. Now, the call to arms sounds once more!
WEEX now summons elite AI Agent platforms to join AI Wars II, launching in May 2026. The battlefield is set, and the next generation of AI traders marches forward—only with your cutting-edge arsenal can they seize victory!
Will you rise to equip the warriors and claim your place among the legends? Can your AI Agent technology dominate the battlefield? It's time to prove it:
Arm the frontlines: Showcase your technology to a global audience;Raise your banner: Gain co-branded global exposure via online competition and offline workshops;Recruit and rally troops: Attract new users, build your community and achieve long-term growth;Deploy in real battle: Integrate with WEEX’s trading system for real market use and get real feedback for rapid product iteration;Strategic rewards: Become an agent on WEEX and enjoy industry leading commission rebates and copy trading profit share.Join WEEX AI Wars II now to sound the charge!
Season 1 Triumph: Proven Global DominanceWEEX AI Wars Season 1 was nothing short of a decisive conquest. Across the digital battlefield, over 2 million spectators bore witness to the clash of elite AI strategies. Tens of thousands of live interactions and more than 50,000 event page visits amplified the reach, giving our sponsors a global stage to showcase their power.
Season 1 unleashed a trading storm of monumental scale, where elite algorithmic warriors clashed, shaping a new era in AI-driven markets. $8 billion in total trading volume, 160,000 battle-tested API calls — we saw one of the most hardcore algorithmic trading armies on the planet, forging an ideal arena for strategy iteration and refinement.
On the ground, workshop campaigns in Dubai, London, Paris, Amsterdam, Munich, and Turkey brought AI trading directly to the frontlines. Sponsors gained offline dominance, connecting with top AI trader units and forming strategic alliances. Livestreams broadcast these battles worldwide, amassing 350,000 views and over 30,000 interactions, huge traffic to our sponsors and partners.
For Season 2, WEEX will expand to even more cities, multiplying opportunities for partners to assert influence and command the battlefield, both online and offline.
Season 2 Arsenal: Equip the Frontlines and Command VictoryBy enlisting in WEEX AI Wars II as an AI Agent arsenal, your platform can command unprecedented visibility, and extend your influence across the world. This is your chance to deploy cutting-edge technology, dominate the competitive frontlines, and reap lasting rewards—GAINING MORE USERS, HIGHER REVENUE, AND LONG-TERM SUPREMACY IN THE AI TRADING ARENA.
Reach WEEX’s 8 million userbase and global crypto community. Unleash your potential on a global stage! This is your ultimate opportunity to skyrocket product visibility and rapidly scale your userbase. Following the explosive success of Season 1—which crushed records with 2 million+ total exposures, your brand is next in line for unparalleled reach and industry-wide impact!Test and showcase your AI Agent in real markets. Throw your AI Agents into the ultimate arena! Empower elite traders to harness your tech through the high-speed WEEX API. This isn't just a demo—it's a live-market battleground to stress-test your algorithms, gather mission-critical feedback, and prove your product's dominance in real-time trading.Gain extensive co-branded exposure and traffic support. Command the spotlight! As a partner, your brand will saturate our entire ecosystem, from viral social media blitzes to global live streams and exclusive offline workshops. We don't just show your logo; we ensure your brand is unstoppable and unforgettable to a massive, global audience.Enjoy industry leading rebates. Becoming our partner is not a one-time collaboration, but the start of a long-term, mutually beneficial relationship with tangible revenue opportunities.Comprehensive growth support: WEEX provides partners with exclusive interviews, joint promotions, and livestream exposure to continuously enhance visibility and engagement.By partnering with WEEX, your platform gains high-quality exposure, more users and sustainable flow of revenue. The Hackathon is more than a competition. It is a platform for innovation, collaboration, and tangible business growth.
Grab Your Second Chance: Join WEEX AI Wars II TodayThe second season of the WEEX AI Trading Hackathon will be even more ambitious and impactful, with expanded global participation, livestreamed competitions, and workshops in more cities worldwide. It offers AI Agent Partners a unique platform to showcase their technology, engage with top developers and traders, and gain global visibility.
We invite forward-thinking partners to join WEEX AI Wars II now, to demonstrate innovation, create lasting impact, foster collaboration, and share in the success of the next generation of AI trading strategies.
About WEEXFounded in 2018, WEEX has developed into a global crypto exchange with over 6.2 million users across more than 150 countries. The platform emphasizes security, liquidity, and usability, providing over 1,200 spot trading pairs and offering up to 400x leverage in crypto futures trading. In addition to the traditional spot and derivatives markets, WEEX is expanding rapidly in the AI era — delivering real-time AI news, empowering users with AI trading tools, and exploring innovative trade-to-earn models that make intelligent trading more accessible to everyone. Its 1,000 BTC Protection Fund further strengthens asset safety and transparency, while features such as copy trading and advanced trading tools allow users to follow professional traders and experience a more efficient, intelligent trading journey.
Follow WEEX on social mediaX: @WEEX_Official
Instagram: @WEEX Exchange
Tiktok: @weex_global
Youtube: @WEEX_Official
Discord: WEEX Community
Telegram: WeexGlobal Group

Nasdaq Enters Correction Territory | Rewire News Morning Brief

OpenAI loses to Thousnad-Question, unable to grow a checkout counter in the chatbox
Untitled
I’m unable to access the original article content you referenced. Please provide specific details or another article so…
