#merkle-tree #leave #tree-structure #marked #state #leaf #root

shardtree

A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration

5 releases (3 breaking)

new 0.3.1 Apr 3, 2024
0.3.0 Mar 25, 2024
0.2.0 Nov 7, 2023
0.1.0 Sep 8, 2023
0.0.0 Dec 15, 2022

#321 in Data structures

Download history 936/week @ 2023-12-18 593/week @ 2023-12-25 1458/week @ 2024-01-01 2033/week @ 2024-01-08 1355/week @ 2024-01-15 3995/week @ 2024-01-22 1305/week @ 2024-01-29 3402/week @ 2024-02-05 2439/week @ 2024-02-12 2507/week @ 2024-02-19 3211/week @ 2024-02-26 4855/week @ 2024-03-04 1358/week @ 2024-03-11 674/week @ 2024-03-18 1226/week @ 2024-03-25 1598/week @ 2024-04-01

5,166 downloads per month
Used in 6 crates (2 directly)

MIT/Apache

375KB
8K SLoC

shardtree

This is a Rust crate that provides an implementation of a fixed-depth Merkle tree structure that is densely filled from the left. It supports:

  • Out-of-order insertion: leaves and nodes may be inserted into the tree in arbitrary order. The structure will keep track of the right-most filled position as the frontier of the tree; any unfilled leaves to the left of this position are considered "missing", while any unfilled leaves to the right of this position are considered "empty".
  • Witnessing: Individual leaves of the Merkle tree may be marked such that witnesses will be maintained for the marked leaves as additional nodes are inserted into the tree, but leaf and node data not specifically required to maintain these witnesses is not retained, for space efficiency.
  • Checkpointing: the tree may be reset to a previously checkpointed state, up to a fixed number of checkpoints.

The tree is represented as an ordered collection of fixed-depth subtrees, or "shards". The roots of the shards form the leaves in the "cap".

Level
  3           root         \
              / \           |
            /     \         |
  2       /         \        } cap
        / \         / \     |
       /   \       /   \    |
  1   A     B     C     D  /  \
     / \   / \   / \   / \     } shards
  0 /\ /\ /\ /\ /\ /\ /\ /\   /

This structure enables witnesses for marked leaves to be advanced up to recent checkpoints or the latest state of the tree, without having to insert each intermediate leaf individually. Instead, only the roots of all complete shards between the one containing the marked leaf and the tree frontier need to be inserted, along with the necessary nodes to build a path from the marked leaf to the root of the shard containing it.

Documentation

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.4–1MB
~17K SLoC