feat: merkle mountain range

This commit is contained in:
Augusto F. Hack
2023-02-18 02:24:49 +01:00
parent ae3f14e0ff
commit 32d37f1591
8 changed files with 883 additions and 6 deletions

15
src/merkle/mmr/mod.rs Normal file
View File

@@ -0,0 +1,15 @@
mod accumulator;
mod bit;
mod full;
mod proof;
#[cfg(test)]
mod tests;
use super::{Rpo256, Word};
// REEXPORTS
// ================================================================================================
pub use accumulator::MmrPeaks;
pub use full::Mmr;
pub use proof::MmrProof;