Skip to main content

bitcoin_rs_utreexo/
lib.rs

1#![doc = include_str!("../README.md")]
2#![forbid(unsafe_op_in_unsafe_fn)]
3
4/// Stump and Pollard accumulator wrapper.
5pub mod accumulator;
6/// Full bridge-node accumulator support.
7pub mod bridge;
8/// Public Utreexo proof type.
9pub mod proof;
10
11pub use accumulator::{Accumulator, AccumulatorKind, UtreexoError};
12pub use bridge::{Bridge, BridgeError};
13pub use proof::Proof;