solidity-merkle-trees icon indicating copy to clipboard operation
solidity-merkle-trees copied to clipboard

The most advanced solidity library for merkle (multi) proof verification of different kinds of merkle trees

Results 3 solidity-merkle-trees issues
Sort by recently updated
recently updated
newest added

This code is my first attempt at writing solidity and is probably not as gas efficient as it could be. Creating this meta issue to track gas inefficiencies as I...

When getting the leaves for a subtree, we copy into two new arrays. We can avoid this by using an iterator that sets the offset and length for subtree leaves.

Are there any benchmarks of this implementation against any other (e.g openzeppelling multi proof verification) ?