Author: Gray Lobster, Deep Tide TechFlow Ethereum developers have an unspoken habit: avoid touching the EVM if possible. In the past few years, whenever a new cryptographicAuthor: Gray Lobster, Deep Tide TechFlow Ethereum developers have an unspoken habit: avoid touching the EVM if possible. In the past few years, whenever a new cryptographic

Goodbye EVM? Vitalik is about to perform "heart surgery" on Ethereum.

2026/03/03 18:22
7 min read
For feedback or concerns regarding this content, please contact us at crypto.news@mexc.com

Author: Gray Lobster, Deep Tide TechFlow

Ethereum developers have an unspoken habit: avoid touching the EVM if possible.

Goodbye EVM? Vitalik is about to perform heart surgery on Ethereum.

In the past few years, whenever a new cryptographic operation was needed on the blockchain, the developers' first reaction was not to implement it in the EVM, but to request the addition of a "pre-compiled contract," a shortcut that bypasses the virtual machine and is hard-coded directly at the protocol layer.

On March 1st, Vitalik Buterin posted a long post on X, completely breaking the ice. His gist was: the whole point of Ethereum is its versatility; if the EVM isn't good enough, then we should address the problem head-on and build a better virtual machine.

He provided two specific surgical knives.

The first step: Change the "data structure"

The first change targets Ethereum's state tree. You can think of this as Ethereum's "ledger indexing system." Every time someone checks the balance or verifies a transaction, they have to scroll down this tree.

The problem is that the tree is currently too "fat" . Ethereum uses a structure called a "hexa-forked Keccak Merkel Patricia tree" (the name sounds like a spell). Vitalik's EIP-7864 proposes to replace it with a simpler binary tree.

To illustrate: Previously, querying a piece of data required repeatedly choosing directions at a six-way intersection; now, it only requires left and right. What's the result? The Merkel branch length is reduced to a quarter of its original length. For lightweight clients, the bandwidth required for data verification is significantly reduced.

But Vitalik wasn't satisfied with just changing the shape of the tree. He also wanted to change the "font on the leaves," which is the hash function. There were two candidate solutions: Blake3 and Poseidon.

  • Blake3 provides a stable speed boost;
  • Poseidon is more radical, theoretically increasing proof efficiency by dozens of times, but its security still requires further auditing.

It's worth noting that this scheme actually replaces Verkle Trees, which had been discussed in the community for many years. Verkle was once the preferred scheme for the hard fork in 2026, but it gradually fell out of favor from mid-2024 because the elliptic curve cryptography it relies on is threatened by quantum computing, and the binary tree scheme took over.

The second step: Change the "virtual machine," turning the EVM into a smart contract.

The second change was bolder and more controversial: replacing the EVM with the RISC-V architecture for the long term.

RISC-V is an open-source instruction set that originally had nothing to do with blockchain, but now it is used internally by almost all ZK proof systems. Vitalik's logic is straightforward: since the prover is already speaking RISC-V, why should the virtual machine speak another language and then add a translator in between? Removing the translation layer naturally increases efficiency.

A RISC-V interpreter only requires a few hundred lines of code. Vitalik says this is what a blockchain virtual machine should look like.

He planned a three-step approach: First, run pre-compiled contracts on the new virtual machine and rewrite 80% of the existing pre-compiled contracts with the new VM code; second, allow developers to directly deploy contracts on the new virtual machine and run them in parallel with the EVM; third, the EVM will be retired, but not disappear—it will be rewritten as a smart contract that runs on the new virtual machine, achieving full backward compatibility.

Existing car owners don't need to change cars. Only the engine has been quietly replaced; the steering wheel remains the same.

How important are these two things combined? Vitalik gave a figure: the state tree and the virtual machine together account for more than 80% of Ethereum's proof bottleneck. In other words, without addressing these two components, Ethereum's scaling in the ZK era will be stagnant.

Arbitrum disagrees: You can't force delivery drivers to drive forklifts just because warehouses use them.

But this is not a story that everyone agrees on.

Last November, Offchain Labs, the core development team of Arbitrum, published a detailed technical rebuttal. The core argument of the four researchers was that while RISC-V is indeed suitable for ZK proofs, it is not suitable for contract "delivery formats".

They raised a key distinction: the "Delivery Instruction Set" (dISA) and the "Proof Instruction Set" (pISA) do not need to be the same thing. Your warehouse is most efficient with forklifts, but that doesn't mean your delivery person should also use a forklift to deliver goods to your doorstep.

Offchain Labs advocates using WebAssembly (WASM) for the contract layer, and its reasons are quite solid: WASM is highly efficient on standard hardware, while most Ethereum nodes do not run RISC-V chips, and a forced switch would mean the need for an emulator; WASM has a mature type security verification mechanism; and WASM's toolchain ecosystem has been tested in practice in billions of execution environments.

More importantly, they're not just talking the talk. Offchain Labs has already run a prototype on Arbitrum: using WASM as the contract delivery format, then compiling it into RISC-V for ZK proofs. The two layers do their own work without interfering with each other.

They also raised a thought-provoking risk: the technology in the ZK proof field is changing rapidly, with the RISC-V implementation recently switching from 32-bit to 64-bit. If RISC-V is soldered onto Ethereum's L1 now, what if a better proof architecture emerges in two years? Betting on a rapidly moving bullseye is not Ethereum's style.

A larger context: Level 2 infants are beginning to "wean" from their dependence on external care.

To understand this proposal, a broader context is needed.

Just a month ago, Vitalik publicly questioned whether Ethereum still needed a "dedicated L2 roadmap," triggering a collective response from the L2 camp. Ben Fisch, CEO of Espresso Systems, aptly put it to CoinDesk: Vitalik's point is that the initial purpose of L2 was to help Ethereum scale, but now that Ethereum itself needs to become faster, the role of L2 naturally needs to change.

Interestingly, instead of panicking, L2 blockchains have begun to actively "de-Ethereumize." Jing Wang, co-founder of OP Labs, likened L2 to an independent website, while Ethereum is the underlying open settlement standard. Polygon CEO Marc Boiron put it more bluntly: the real challenge is not scaling, but creating a unique block space for real-world scenarios like payments.

In other words, Vitalik's major overhaul of the execution layer is a technological footnote to a larger trend: Ethereum is regaining control over its core capabilities, while L2 layers are being forced, or rather, finally finding their own reason for independent existence.

Is this feasible?

Vitalik himself admitted that there is currently no broad consensus in the developer community regarding virtual machine replacement . State tree reforms are more mature , with EIP-7864 already having a concrete draft and an implementation team. But RISC-V replacing the EVM? This is still at the "roadmap" stage, far from being written into code.

However, Vitalik made an impressive statement last week: Ethereum has already changed its jet engine once in flight (referring to The Merge), and can change it about four more times in the future— state tree, simplified consensus, ZK-EVM verification, and virtual machine replacement.

The Ethereum Glamsterdam upgrade is expected to launch in the first half of 2026, followed by Hegota. While the specifics of the two hard forks have not yet been finalized, state tree reform and execution layer optimization are the main themes.

Ethereum's story has never been about "whether it can or cannot". From PoW to PoS, from L1 all-in to Rollup hub, it has proven that it has the ability and courage to dismantle its engine at an altitude of 10,000 meters.

This time, the work involves something deeper—not adding new features, but digging up the old foundation and re-pouring the concrete. Is this a well-thought-out renovation, or a bottomless pit that gets more and more complicated? We'll probably find out in 2027.

But at least one thing is certain: Ethereum doesn't intend to be a "patched-up old system" in the ZK era. As for how to remove the patches and what engine to replace it with, the debate itself may be more valuable than the conclusion.

Market Opportunity
Notcoin Logo
Notcoin Price(NOT)
$0,0004033
$0,0004033$0,0004033
-2,44%
USD
Notcoin (NOT) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact crypto.news@mexc.com for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

Unprecedented Surge: Gold Price Hits Astounding New Record High

Unprecedented Surge: Gold Price Hits Astounding New Record High

BitcoinWorld Unprecedented Surge: Gold Price Hits Astounding New Record High While the world often buzzes with the latest movements in Bitcoin and altcoins, a traditional asset has quietly but powerfully commanded attention: gold. This week, the gold price has once again made headlines, touching an astounding new record high of $3,704 per ounce. This significant milestone reminds investors, both traditional and those deep in the crypto space, of gold’s enduring appeal as a store of value and a hedge against uncertainty. What’s Driving the Record Gold Price Surge? The recent ascent of the gold price to unprecedented levels is not a random event. Several powerful macroeconomic forces are converging, creating a perfect storm for the precious metal. Geopolitical Tensions: Escalating conflicts and global instability often drive investors towards safe-haven assets. Gold, with its long history of retaining value during crises, becomes a preferred choice. Inflation Concerns: Persistent inflation in major economies erodes the purchasing power of fiat currencies. Consequently, investors seek assets like gold that historically maintain their value against rising prices. Central Bank Policies: Many central banks globally are accumulating gold at a significant pace. This institutional demand provides a strong underlying support for the gold price. Furthermore, expectations around interest rate cuts in the future also make non-yielding assets like gold more attractive. These factors collectively paint a picture of a cautious market, where investors are looking for stability amidst a turbulent economic landscape. Understanding Gold’s Appeal in Today’s Market For centuries, gold has held a unique position in the financial world. Its latest record-breaking performance reinforces its status as a critical component of a diversified portfolio. Gold offers a tangible asset that is not subject to the same digital vulnerabilities or regulatory shifts that can impact cryptocurrencies. While digital assets offer exciting growth potential, gold provides a foundational stability that appeals to a broad spectrum of investors. Moreover, the finite supply of gold, much like Bitcoin’s capped supply, contributes to its perceived value. The current market environment, characterized by economic uncertainty and fluctuating currency values, only amplifies gold’s intrinsic benefits. It serves as a reliable hedge when other asset classes, including stocks and sometimes even crypto, face downward pressure. How Does This Record Gold Price Impact Investors? A soaring gold price naturally raises questions for investors. For those who already hold gold, this represents a significant validation of their investment strategy. For others, it might spark renewed interest in this ancient asset. Benefits for Investors: Portfolio Diversification: Gold often moves independently of other asset classes, offering crucial diversification benefits. Wealth Preservation: It acts as a robust store of value, protecting wealth against inflation and economic downturns. Liquidity: Gold markets are highly liquid, allowing for relatively easy buying and selling. Challenges and Considerations: Opportunity Cost: Investing in gold means capital is not allocated to potentially higher-growth assets like equities or certain cryptocurrencies. Volatility: While often seen as stable, gold prices can still experience significant fluctuations, as evidenced by its rapid ascent. Considering the current financial climate, understanding gold’s role can help refine your overall investment approach. Looking Ahead: The Future of the Gold Price What does the future hold for the gold price? While no one can predict market movements with absolute certainty, current trends and expert analyses offer some insights. Continued geopolitical instability and persistent inflationary pressures could sustain demand for gold. Furthermore, if global central banks continue their gold acquisition spree, this could provide a floor for prices. However, a significant easing of inflation or a de-escalation of global conflicts might reduce some of the immediate upward pressure. Investors should remain vigilant, observing global economic indicators and geopolitical developments closely. The ongoing dialogue between traditional finance and the emerging digital asset space also plays a role. As more investors become comfortable with both gold and cryptocurrencies, a nuanced understanding of how these assets complement each other will be crucial for navigating future market cycles. The recent surge in the gold price to a new record high of $3,704 per ounce underscores its enduring significance in the global financial landscape. It serves as a powerful reminder of gold’s role as a safe haven asset, a hedge against inflation, and a vital component for portfolio diversification. While digital assets continue to innovate and capture headlines, gold’s consistent performance during times of uncertainty highlights its timeless value. Whether you are a seasoned investor or new to the market, understanding the drivers behind gold’s ascent is crucial for making informed financial decisions in an ever-evolving world. Frequently Asked Questions (FAQs) Q1: What does a record-high gold price signify for the broader economy? A record-high gold price often indicates underlying economic uncertainty, inflation concerns, and geopolitical instability. Investors tend to flock to gold as a safe haven when they lose confidence in traditional currencies or other asset classes. Q2: How does gold compare to cryptocurrencies as a safe-haven asset? Both gold and some cryptocurrencies (like Bitcoin) are often considered safe havens. Gold has a centuries-long history of retaining value during crises, offering tangibility. Cryptocurrencies, while newer, offer decentralization and can be less susceptible to traditional financial system failures, but they also carry higher volatility and regulatory risks. Q3: Should I invest in gold now that its price is at a record high? Investing at a record high requires careful consideration. While the price might continue to climb due to ongoing market conditions, there’s also a risk of a correction. It’s crucial to assess your personal financial goals, risk tolerance, and consider diversifying your portfolio rather than putting all your capital into a single asset. Q4: What are the main factors that influence the gold price? The gold price is primarily influenced by global economic uncertainty, inflation rates, interest rate policies by central banks, the strength of the U.S. dollar, and geopolitical tensions. Demand from jewelers and industrial uses also play a role, but investment and central bank demand are often the biggest drivers. Q5: Is gold still a good hedge against inflation? Historically, gold has proven to be an effective hedge against inflation. When the purchasing power of fiat currencies declines, gold tends to hold its value or even increase, making it an attractive asset for preserving wealth during inflationary periods. To learn more about the latest crypto market trends, explore our article on key developments shaping Bitcoin’s price action. This post Unprecedented Surge: Gold Price Hits Astounding New Record High first appeared on BitcoinWorld.
Share
Coinstats2025/09/18 02:30
Ripple pushes urgent XRPL patch — but nodes must trust its new key

Ripple pushes urgent XRPL patch — but nodes must trust its new key

The post Ripple pushes urgent XRPL patch — but nodes must trust its new key appeared on BitcoinEthereumNews.com. Ripple has released its fix for public-facing nodes
Share
BitcoinEthereumNews2026/03/14 03:04
Natural Gas Crisis: LNG Supply Disruption Fuels Elevated TTF Prices, Warns Commerzbank

Natural Gas Crisis: LNG Supply Disruption Fuels Elevated TTF Prices, Warns Commerzbank

BitcoinWorld Natural Gas Crisis: LNG Supply Disruption Fuels Elevated TTF Prices, Warns Commerzbank European natural gas markets face renewed pressure as liquefied
Share
bitcoinworld2026/03/14 03:15