Skip to content
/ iavl Public
forked from cosmos/iavl

Merkleized IAVL+ Tree implementation in Go

License

Notifications You must be signed in to change notification settings

DongLieu/iavl

This branch is 176 commits behind cosmos/iavl:master.

Folders and files

NameName
Last commit message
Last commit date
Mar 16, 2023
Aug 26, 2022
Feb 24, 2023
Dec 28, 2022
Feb 24, 2023
Mar 13, 2023
Oct 10, 2022
Jan 31, 2023
Mar 13, 2023
Feb 24, 2023
Jul 30, 2020
Aug 29, 2022
Aug 29, 2022
Aug 29, 2022
Dec 28, 2022
Feb 20, 2023
Mar 14, 2023
Oct 30, 2022
Jul 25, 2022
Nov 25, 2022
Aug 31, 2017
Aug 31, 2017
Sep 15, 2022
Mar 13, 2023
Mar 13, 2023
Mar 2, 2023
Aug 26, 2022
Mar 13, 2023
Jan 23, 2023
Aug 31, 2022
Mar 7, 2023
Mar 7, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Feb 20, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Mar 13, 2023
Aug 1, 2022
Mar 13, 2023
Dec 28, 2022
Mar 13, 2023
Feb 25, 2023
Oct 19, 2022
Dec 28, 2022
Mar 13, 2023
Mar 13, 2023
Dec 28, 2022
Jan 23, 2023
Mar 13, 2023
Mar 13, 2023
Oct 30, 2022
Mar 13, 2023
Aug 29, 2022
Aug 26, 2022

Repository files navigation

IAVL+ Tree

version license API Reference Lint Test Discord chat

Note: Requires Go 1.18+

A versioned, snapshottable (immutable) AVL+ tree for persistent data.

Benchmarks

The purpose of this data structure is to provide persistent storage for key-value pairs (say to store account balances) such that a deterministic merkle root hash can be computed. The tree is balanced using a variant of the AVL algorithm so all operations are O(log(n)).

Nodes of this tree are immutable and indexed by their hash. Thus any node serves as an immutable snapshot which lets us stage uncommitted transactions from the mempool cheaply, and we can instantly roll back to the last committed state to process transactions of a newly committed block (which may not be the same set of transactions as those from the mempool).

In an AVL tree, the heights of the two child subtrees of any node differ by at most one. Whenever this condition is violated upon an update, the tree is rebalanced by creating O(log(n)) new nodes that point to unmodified nodes of the old tree. In the original AVL algorithm, inner nodes can also hold key-value pairs. The AVL+ algorithm (note the plus) modifies the AVL algorithm to keep all values on leaf nodes, while only using branch-nodes to store keys. This simplifies the algorithm while keeping the merkle hash trail short.

In Ethereum, the analog is Patricia tries. There are tradeoffs. Keys do not need to be hashed prior to insertion in IAVL+ trees, so this provides faster iteration in the key space which may benefit some applications. The logic is simpler to implement, requiring only two types of nodes -- inner nodes and leaf nodes. On the other hand, while IAVL+ trees provide a deterministic merkle root hash, it depends on the order of transactions. In practice this shouldn't be a problem, since you can efficiently encode the tree structure when serializing the tree contents.

About

Merkleized IAVL+ Tree implementation in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 99.2%
  • Other 0.8%