Efficient Forkless Blockchain Databases

๐Ÿ“… 2025-08-28
๐Ÿ“ˆ Citations: 0
โœจ Influential: 0
๐Ÿ“„ PDF
๐Ÿค– AI Summary
Forkless Layer-1 blockchains suffer from excessive StateDB storage overhead and low transaction throughput due to conventional database designs that retain redundant fork-support mechanisms. Method: This paper introduces the first state database architecture explicitly tailored for forkless consensus. It abandons legacy fork-compatible design patterns and instead integrates state compression, lazy state updates, and a versioned state trieโ€”leveraging the deterministic, fork-free execution environment inherent to forkless chains to optimize data structures. Contribution/Results: Experimental evaluation against the Geth-based Fantom client demonstrates a 100ร— reduction in storage footprint and a 10ร— improvement in transaction throughput. Crucially, this work establishes the first systematic decoupling of database design from fork assumptions, thereby proposing a novel paradigm for high-performance, lightweight Layer-1 node implementations.

Technology Category

Application Category

๐Ÿ“ Abstract
Operating nodes in an L1 blockchain remains costly despite recent advances in blockchain technology. One of the most resource-intensive components of a node is the blockchain database, also known as StateDB, that manages balances, nonce, code, and the persistent storage of accounts/smart contracts. Although the blockchain industry has transitioned from forking to forkless chains due to improved consensus protocols, forkless blockchains still rely on legacy forking databases that are suboptimal for their purposes. In this paper, we propose a forkless blockchain database, showing a 100x improvement in storage and a 10x improvement in throughput compared to the geth-based Fantom Blockchain client.
Problem

Research questions and friction points this paper is trying to address.

Designing efficient forkless databases for blockchain StateDB
Reducing high operational costs of L1 blockchain nodes
Optimizing storage and throughput in forkless blockchain systems
Innovation

Methods, ideas, or system contributions that make the work stand out.

Forkless blockchain database for StateDB
100x storage improvement over geth
10x throughput enhancement compared to Fantom
๐Ÿ”Ž Similar Papers
No similar papers found.