ethrex-trie 17.0.0

Ethereum Merkle Patricia Trie for the ethrex Ethereum execution client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## Ethrex-Trie
This is the implementation of the State Trie (a Merkle Patricia Trie) used
by Ethrex.

### Benchmarking
To measure the performance of our implementation, we have a simple benchmark
that compares against [citahub's cita_trie implementation](https://github.com/citahub/cita_trie/tree/master).

To run it, you'll need rust installed of course, and you 
can run a comparison with:
```bash
make bench
```
Benches are in the `benches` folder.

### Useful Links
- [Ethereum.org -- Merkle Patricia Trie]https://ethereum.org/es/developers/docs/data-structures-and-encoding/patricia-merkle-trie/ 
- [Stack Exchange Discussion]https://ethereum.stackexchange.com/questions/130017/merkle-patricia-trie-in-ethereum