Sparse merkle tree with variants implementation for CosmWasm smart contract
Normal sparse merkle tree with customizable tree level and default leaf.
Like sparse merkle tree but able to check valid root hash with all previous root hashes.
Like sparse merkle tree but able to check valid root hash with previous root hashes upto specified history level.
Implement the hasher trait for desired hasher struct.
```rust
pub struct Blake2;
impl Hasher
First, instantiate the merkle tree by using new
constructor function and specify leaf and hasher type.
rust
const TREE: SparseMerkleTree<Uint256, Blake2> =
SparseMerkleTree::new("hashes", "leafs", "level", "zeros");
Then initialize the tree by invoking the init
function, preferably in instantiate
entry point.
```rust
pub fn instantiate(
deps: DepsMut,
env: Env,
_info: MessageInfo,
_msg: InstantiateMsg,
) -> Result
// ...
} ```
Next, insert a leaf into next available index of the tree by invoking insert
function, insert
will return inserted index and the new root.
```rust let leaf = Blake2.hash_two(&Uint256::one(), &Uint256::one())?;
let (index, new_root) = TREE.insert(&mut storage, leaf, &Blake2)?;
asserteq!(index, 0); asserteq!( newroot, Uint256::fromstr( "65270348628983318905821145914244198139930176154042934882987463098115489862117" )? ); asserteq!(newroot, TREE.getlatestroot(&storage)?); assert!(TREE.isvalidroot(&storage, &new_root)?); ```