bridgetree

Crates.iobridgetree
lib.rsbridgetree
version0.6.0
sourcesrc
created_at2022-07-22 16:34:05.097524
updated_at2024-09-25 22:48:55.173153
descriptionA space-efficient Merkle tree designed for linear appends with witnessing of marked leaves, checkpointing & state restoration.
homepagehttps://github.com/zcash/incrementalmerkletree
repositoryhttps://github.com/zcash/incrementalmerkletree
max_upload_size
id630906
size74,185
Crate publishers (github:zcash:crate-publishers)

documentation

README

bridgetree

This is a Rust crate that provides an implementation of an append-only Merkle tree structure. Individual leaves of the merkle tree may be marked such that witnesses will be maintained for the marked leaves as additional nodes are appended to the tree, but leaf and node data not specifically required to maintain these witnesses is not retained, for space efficiency. The data structure also supports checkpointing of the tree state such that the tree may be reset to a previously checkpointed state, up to a fixed number of checkpoints.

The crate also supports using "bridges" containing the minimal possible amount of data to advance witnesses for marked leaves data up to recent checkpoints or the the latest state of the tree without having to append each intermediate leaf individually, given a bridge between the desired states computed by an outside source. The state of the tree is internally represented as a set of such bridges, and the data structure supports fusing and splitting of bridges.

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.

Commit count: 359

cargo fmt