ethrex-storage
Persistent storage layer for the ethrex Ethereum client.
For detailed API documentation, see the rustdocs:
Quick Start
use ;
// Create with RocksDB backend
let store = new?;
// Add a block
store.add_block.await?;
// Query account
let info = store.get_account_info?;
Features
rocksdb: Enable RocksDB backend for persistent storage (default is in-memory)