Custom Verkle tree implementation.
This implementation works as a proof of concept on the Pedersen commitment scheme applied to Verkle-type tries. It uses curve25519_dalek crate for all the cryptographic heavy lifting and rand for the random generator. Debug run of the main example is full of comments about the dynamic internals.
To run in debug mode:
cargo run
To run in release mode:
cargo run --release
Runing tests:
cargo test --release