A thread-safe implementation of revm Database
that directly fetch data from Reth database.
let db = RethDB::new(
Chain::mainnet(), "path/to/reth/db", Some(block_number)
);
// use it in the same way as other revm DBs.
For replaying blocks, approximately 40x faster than AlloyDB using IPC and 100x faster than AlloyDB using HTTP RPC.