Light Clients for Lazy Blockchains
Ertem Nusret Tas, David Tse, Lei Yang, Dionysis Zindros
TL;DR
This work tackles the challenge of enabling light clients for lazy blockchains, where consensus does not verify execution. It introduces a bisection-based protocol over augmented dirty ledgers, implemented as a dirty tree and Merkle Mountain Range, to locate the first disagreement between honest and adversarial full nodes and to verify state via fraud proofs and execution proofs. The protocol achieves succinct verification with $O(\log r)$-scale communication per round and $O(n)$-scale tournaments across $n$ provers, supported by formal completeness, soundness, and succinctness arguments; empirical results show light clients can synchronize across global full nodes in seconds while downloading orders of magnitude less data than full nodes. The approach is compatible with existing lazy blockchains and can be composed with superlight consensus oracles (e.g., FlyClient/NIPoPoWs) to yield polylogarithmic communication in $r$ overall, providing a practical path to scalable, secure light clients for lazy ledgers.
Abstract
Lazy blockchains decouple consensus from transaction verification and execution to increase throughput. Although they can contain invalid transactions (e.g., double spends) as a result, these can easily be filtered out by full nodes that check if there have been previous conflicting transactions. However, creating light (SPV) clients that do not see the whole transaction history becomes a challenge: A record of a transaction on the chain does not necessarily entail transaction confirmation. In this paper, we devise a protocol that enables the creation of efficient light clients for lazy blockchains. The number of interaction rounds and the communication complexity of our protocol are logarithmic in the blockchain execution time. Our construction is based on a bisection game that traverses the Merkle tree containing the ledger of all - valid or invalid - transactions. We prove that our proof system is succinct, complete and sound, and empirically demonstrate the feasibility of our scheme.
