VERSE PRESS

Crypto News, Global First.

Ethereum's Verkle Tree Upgrade Targets Node Storage Crisis, Eyes Global Participation

Ethereum developers are pushing forward with a fundamental overhaul of how the network stores and verifies state data.

|

Ethereum developers are pushing forward with a fundamental overhaul of how the network stores and verifies state data. The upgrade, built around a cryptographic structure called Verkle trees, aims to reduce the hardware requirements for running a verifying node from multiple terabytes of fast storage down to near zero. Targeted for inclusion in the Fusaka network upgrade in 2026 (originally scoped for late 2025), the change has direct implications for the roughly 142 million ETH holders worldwide, particularly in high-adoption markets such as Nigeria, Kenya, and India where hardware costs restrict grassroots participation.


The storage problem is already severe. Running a full Ethereum node using the Geth client in 2025 requires between 1.3 and 2 terabytes of NVMe SSD storage. State data alone exceeds 50 GB, and the cryptographic proofs required for block verification push cumulative requirements past 150 GB. That figure grows by roughly 75 GB each year. Archive nodes, which store the complete history of the chain, demand between 16 and 20 terabytes. Ethereum Foundation researchers formally flagged the "state bloat" problem in 2025, warning that the trajectory makes independent node operation increasingly difficult for individual participants. The Verkle migration is one of several concurrent strategies researchers have proposed in response; State Expiry, State Archive, and Partial Statelessness have been identified as parallel mitigation paths advancing alongside the Verkle work.


Verkle trees attack the proof size directly. The current system relies on Merkle Patricia Tries, a data structure dating to Ethereum's 2015 launch that was built for correctness and auditability, not proof compactness. Generating a cryptographic witness (the proof that a specific piece of state is valid) currently produces files of roughly 150 KB per account. Verkle trees replace the hash-based proof scheme with a vector-commitment approach using Pedersen commitments on the Bandersnatch elliptic curve, a curve specifically designed for efficient in-circuit verification, which also makes Verkle proofs verifiable inside zero-knowledge circuits. That property connects directly to SNARK-based verification approaches under broader consideration for Ethereum. The transition reduces witnesses to approximately 200 bytes per account on average. An April 2025 preprint study placed average block witness sizes at around 0.8 MB under Verkle trees, compared to roughly 2.6 MB under the leading alternative using binary Merkle trees with SNARKs (a class of succinct cryptographic proofs designed for fast verification). The same paper concluded that Verkle trees represent "a viable choice for enabling stateless clients in Ethereum due to their scalability, small witness sizes, and fast verification times."


The practical near-term target is a condition called weak statelessness. Under this model, nodes that produce blocks still maintain full copies of the chain's state, but nodes that only validate blocks do not. Block producers would attach a compact witness to each block containing only the state fragments touched by that block's transactions. Because Verkle witnesses are small enough to pass across the peer-to-peer network in real time, any device can verify a block without storing anything persistently. Vitalik Buterin said in February 2024 that Verkle trees "will enable stateless validator clients, which can allow staking nodes to run with near-zero hard disk space and sync nearly instantly, far better solo staking UX. Also good for user-facing light clients." The Ethereum Foundation has framed the longer-term goal of its Verge roadmap phase around enabling full chain verification on a smartwatch.


For users in Nigeria, Kenya, and India, the hardware barrier is not abstract. Nigeria processed approximately $59 billion in crypto transaction volume between July 2023 and June 2024, ranking second globally in Chainalysis's adoption index. Peer-to-peer trading accounts for 45 percent of Africa's total crypto volume, with Nigeria at its core. Yet operating a node there carries compounded friction: hardware import costs, inconsistent power supply, and limited high-speed internet outside Lagos and Abuja. Kenya's crypto transaction volume climbed from approximately $23 billion in 2023 to exceed $51 billion in 2024, moving the country from 32nd to 17th in global adoption rankings. India leads globally in total ownership at approximately 150 million users, but current storage demands effectively limit node operation to well-resourced operators. The Nimbus client team has explicitly targeted "lightweight devices such as mobile phones" as platforms for future stateless clients. That goal maps directly onto the mobile-first internet patterns dominant across all three markets.


The migration also introduces technical breaking changes that developers need to track. The transition merges Ethereum's separate account trie and storage trie into one unified structure, expands key length from 20 to 32 bytes, and introduces Extension-and-Suffix (EaS) tree nodes that split 256-bit values into 16-byte segments to stay within the field's 252-bit safe commitment limit. State access gas costs are also adjusted under EIP-4762. Teams building indexers, light wallet backends, and RPC infrastructure will need to update their implementations. The Beverly Hills and Kaustinen testnets are currently live environments where those changes can be tested ahead of mainnet deployment.


Verkle trees were cut from the Pectra upgrade, which launched in 2025, and are now slated for Fusaka as it rolls into 2026, with potential further integration in the subsequent Hegota upgrade. The timeline has already shifted once, and coordination across multiple client teams remains an active prerequisite for deployment. With benchmark data confirming performance advantages and two active testnets running, the technical foundation is in place. Whether the 2026 target holds depends on cross-client readiness in the coming months.