dig-blockstore 0.1.0

DIG L2 block persistence — RocksDB-backed block store with canonical chain indexing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Lightweight storage-facing types (records, tip, stats).
//!
//! **Normative:** [`STR-002`](../../docs/requirements/domains/crate_structure/specs/STR-002.md) module layout.
//! **Block types** (`L2Block`, …) remain in [`dig_block`](https://docs.rs/dig-block) per project hard requirements.

pub mod block_record;
pub mod chain_tip;
pub mod reorg_result;
pub mod storage_stats;
pub mod stored_checkpoint;

pub use block_record::BlockRecord;
pub use chain_tip::ChainTip;
pub use reorg_result::ReorgResult;
pub use storage_stats::StorageStats;
pub use stored_checkpoint::StoredCheckpoint;