Ledger and execution
Storage.
RocksDB with 20+ column families, a Merkle Patricia Trie for state roots, snapshot creation and restoration.
- STATUS
- Testnet
- CRATE
- tenzro-storage
- STABILITY
- Stable
- TYPE
- Component
01
Column families
CF_BLOCKS CF_STATE CF_ACCOUNTS
CF_TRANSACTIONS CF_METADATA CF_SNAPSHOTS
CF_SETTLEMENTS CF_CHANNELS CF_CHALLENGES
CF_IDENTITIES CF_TOKENS CF_MODELS
CF_PROVIDERS CF_MODEL_SERVICES CF_AGENTS
CF_AGENT_TEMPLATES CF_TASKS CF_SKILLS
CF_TOOLS CF_TRAINING_RUNS CF_TRAINING_RECEIPTS02
State roots
Merkle Patricia Trie for deterministic state hashing. Proofs bind to the root via sibling reconstruction.
03
Durability
Real fsync on finalized block writes via write_batch_sync. Genesis block persisted; auto-repair on open for corrupted WALs.
04
Snapshots
Compressed snapshot creation and restoration. Retention 100 snapshots. 1 GB cache by default.
Related