Status: Draft (Revised 2026-03-27 — rewritten for QMDB architecture)
Type: Standards Track
Category: Core
1. Abstract
This proposal defines Cowboy’s storage and state persistence mechanism, adopting a QMDB (flat key-value store with Blake3 hashing) architecture. The system employs:- Sequential ledger for persisting consensus blocks;
- QMDB as the canonical state repository, with fixed 54-byte keys and Blake3-based Merkle commitments;
- StateValue codec (CBOR/binary) as the encoding format;
- Namespaced key space with byte-prefix routing for accounts, storage, timers, mailbox, and system state;
- Rebuildable auxiliary indexes to support queries and browsing;
- Merkle proof layer for light client state verification (C15 State Proofs).
2. Background and Motivation
The original CIP-4 design specified Merkle-Patricia Trie (MPT). Production implementation chose QMDB for:- Performance: Flat KV with Blake3 hashing provides 10-100x throughput vs. hexary MPT for state reads/writes;
- Simplicity: Fixed 54-byte keys (1-byte prefix + 20-byte address + 33-byte slot/hash/zero-pad) avoid tree rebalancing;
- Proof capability: QMDB native Merkle proofs + Binary Merkle Tree (BMT) for TX/receipt roots provide equivalent light client verification;
- Production-proven: Running on devnet with full E2E proof verification.
3. Overall Design
Data is organized into three layers:- Ledger: Append-only block segment files;
- QMDB (canonical state): Three flat KV databases (
state_db,tx_index,tx_receipts) with Blake3 Merkle commitments; - Aux (rebuildable indexes): Read-optimized tables (TxHash→location, BlockHash→height, event indexes), not included in state root.
3.1 Three-Layer Relationships and Data Flow
These three layers are not parallel repositories but a top-down rebuildable, verifiable pipeline: Ledger (sequential source of truth) → Execution → QMDB (canonical state roots) → Derivation → Aux (read-optimized indexes).-
Write and Commit Path (when a block is accepted):
- Consensus produces block → Write to Ledger: Append block header, transactions/messages; block header contains
state_root,tx_root,receipt_root. - Speculative execution replays the block → Produce write batch: Update account/actor/storage/timer/mailbox/deferred-tx keys; compute three Merkle roots.
- Root verification: Locally computed roots must match block header roots; otherwise reject block.
- Batch commit: Cache the write batch; on finalization, apply atomically to QMDB.
- Derive/refresh Aux (can be async): Export from Ledger + QMDB to auxiliary indexes.
- Consensus produces block → Write to Ledger: Append block header, transactions/messages; block header contains
-
Read Path (how they cooperate during queries):
- By transaction hash: Query
tx_indexDB for location → read Ledger for raw tx, readtx_receiptsfor receipt. - By address/slot: Read
state_dbdirectly; can return QMDB Merkle proof. - By event topic: Query Aux indexes for candidates, then verify with receipts.
- By transaction hash: Query
-
Consistency invariants:
state_db.root_at(N) == Ledger.block[N].state_root;tx_rootcomputed via BMT over block transactions matches header;receipt_rootcomputed via BMT over block receipts matches header;- After deleting Aux, can rebuild from Ledger+QMDB within bounded time.
3.2 Rollback and Rebuild
- Speculative rollback: After speculative execution, the write batch is cached but not applied. On finalization, the cached batch is applied atomically.
- Fork reorganization: Replay from last finalized height using Ledger as source of truth.
- Aux-only corruption: Rebuild from Ledger + QMDB receipts; does not affect consensus correctness.
- QMDB corruption: Replay Ledger from genesis or trusted snapshot to regenerate state.
4. Key Space and Namespaces
4.1 State Key Format
All state keys are 54 bytes (fixed length):4.2 State Prefixes
Normative source of truth: theStatePrefixenum innode/storage/src/state_key.rs. Prefixes run 0x01–0x1D (28 distinct); there is no 0x00. Any light-client that queries state MUST use these exact prefixes and key layouts. (Do not confuse this KEY-prefix namespace with the independent VALUE-discriminant byte instate_value.rs, which tags whichStateValuevariant a value is; the two 0x01… ranges overlap only coincidentally.)
4.3 Value Encoding
- StateValue variants (value-discriminant byte in
state_value.rs):Account(Account),Actor(Actor),Code(Vec<u8>),StorageSlot(Vec<u8>),MailboxMessage(Message),Timer(Timer),TimerList(TimerList),DeferredTx(Transaction),DeferredTxList(DeferredTxList),SystemBytes(Vec<u8>),ActorEventList(ActorEventList), and the per-actor counter/pointer scalars (mailbox head/tail, KV count/bytes, dead-letter tail). - Mailbox model: a mailbox is a FIFO ring of individually-keyed messages (
0x04 ‖ addr ‖ be(seq)→MailboxMessage), bounded by the head (0x10) and tail (0x11) pointer keys — not a singleVecDeque<Message>blob. Overflow spills to the dead-letter ring (0x1C/0x1D). - Encoding: CBOR for transactions, binary codec for internal types.
- Decode bounds enforced:
DeferredTxListmax 16,384 entries;ActorEventListmax 1,000 entries.
5. QMDB State Commitments
5.1 State Root
QMDB computes a Merkle root over all key-value pairs instate_db using Blake3 hashing. This root is included in every block header as state_root.
5.2 Transaction Root
Computed via Binary Merkle Tree (BMT) overkeccak256 hashes of all transactions in the block:
5.3 Receipt Root
Computed via BMT over each receipt’s commonware-codec encoding (Encode), not RLP (node/storage/src/merkle_utils.rs):
keccak256("empty_receipts"). TransactionReceipt::rlp_encode() also exists but is an ancillary Ethereum-compat serialization only — it does not feed receipt_root.
5.4 Proof System
QMDB provides native Merkle inclusion proofs for any state key: RPC Endpoints:GET /proof/account/{address}— account state proofGET /proof/actor/{address}— actor metadata proofGET /proof/storage/{address}/{key}— actor storage slot proofGET /proof/tx/{tx_hash}— transaction inclusion proof (BMT)GET /proof/receipt/{tx_hash}— receipt inclusion proof (BMT)POST /proof/multi— batch state proof (up to 256 keys per request)
cowboy-proof-verifier crate provides standalone verification (Rust + WASM), requiring only the proof data and state root — no full node needed.
6. Execution and Consistency
6.1 Block Lifecycle
- Fetch block: Read block header and body from Ledger.
- Pre-check: Validate signatures, nonces, gas limits.
- Speculative execution: Execute all transactions in batch mode:
begin_batch()→ execute transactions →commit_batch()- Produces
state_pending,tx_index_pending,tx_receipts_pendingwrite sets - Processes timers, deferred TXs (with per-actor limits and expiration)
- Compute roots: Calculate
state_root,tx_root,receipt_rootfrom the write set. - Root verification: Roots must match block header; reject if mismatch.
- Cache: Store write batch for later finalization.
- On finalization: Apply cached batch to QMDB databases.
6.2 Atomic Commit
Three QMDB databases are committed sequentially:state_db → tx_index → tx_receipts. Each individual DB commit is atomic. A crash between commits is recoverable: consensus layer replays finalized blocks on restart (see §3.2).
6.3 Determinism Requirements
- All execution engines must write via unified
StateKey/StateValueinterface; - No wall clock, no external randomness during execution;
- Identical block + identical state must produce identical roots.
6.4 Errors and Block Rejection
- Root mismatch: Block rejected.
- Storage errors: Logged with opaque messages to clients; detailed errors server-side only.
- Resource exhaustion: Degrade gracefully (pause Aux derivation), never break QMDB atomicity.
7. Auxiliary Indexes (Rebuildable)
7.1 Index Schemas
tx_index:tx_hash → TransactionLocation { block_hash, tx_index }tx_receipts:tx_hash → TransactionReceipt { ... }- Event indexes: Per-actor event lists (in
state_dbasActorEventList)
7.2 Construction
After block commit, scan transactions and receipts to update auxiliary indexes. Updates can lag behind finalization without affecting consensus.7.3 Rebuild
Full rebuild by replaying Ledger from genesis. Incremental rebuild from last consistent height.8. Snapshots and Sync
8.1 Sync Modes
- Full node sync: Replay Ledger from genesis or trusted snapshot.
- Fast sync: Download QMDB state at height
H, verify root matches block header, replay fromH. - Light client: Maintain block header chain; verify state via Merkle proofs (
/proof/*endpoints).
8.2 Proof Packaging
- Batch proofs (
POST /proof/multi) deduplicate shared proof nodes across multiple keys. - Max 256 keys per batch request.
- Responses include proof version, chunk location, MMR leaves, and operation digests.
9. Performance
9.1 QMDB Advantages
- O(1) reads/writes: Flat KV with fixed-size keys avoids tree traversal;
- Efficient hashing: Blake3 is 3-5x faster than Keccak-256;
- Batch operations: Block-level batch commit with deferred merkleization;
- Bounded cache: Speculative cache limited to 8 entries (evicts oldest on overflow).
9.2 Metrics
Key metrics:block_apply_ms, proof_generation_ms, batch_commit_ms, speculative_cache_size.
10. Security
- Canonical source: Only QMDB
state_dbas authoritative state; - Proof integrity: Merkle proofs verified against
state_rootin finalized block header; - DoS mitigation: Decode bounds on all list types; per-actor limits on timers (1,024) and deferred TXs (64); deferred TX expiration (1,000 blocks); a global RPC rate limit (100 req/s) applies to all endpoints, and the proof endpoints (§5) — whose Merkle/QMDB proof generation is comparatively expensive (
/proof/multibatches up to 256 keys) — additionally SHOULD sit behind a per-IP limiter so a single source cannot exhaust the shared budget; - Error opacity: Storage errors return opaque messages to API callers; detailed errors logged server-side only.
11. Parameters
STATE_KEY_LEN = 54(fixed key size)MAX_SPECULATIVE_CACHE_ENTRIES = 8MAX_DEFERRED_TX_LIST_SIZE = 16,384MAX_ACTOR_EVENTS = 1,000MAX_TIMERS_PER_ACTOR = 1,024MAX_PENDING_DEFERRED_PER_ACTOR = 64DEFERRED_TX_MAX_AGE_BLOCKS = 1,000SNAPSHOT_INTERVAL_BLOCKS = 100_000(node/storage/src/state_sync.rs)
12. State Rent (canonical spec; migrated from WP §17.5)
This section is the normative source for actor-state rent mechanics. Whitepaper §17.5 now references this section. Rationale for the move: rent is a CIP-4 concern (it governs the lifecycle of state in the QMDB store); the WP retains a one-paragraph operational summary plus the governance monitoring cadence.
12.1 Mechanism
Actors exceeding the grace threshold pay ongoing rent measured in CBY:account_size_bytes(actor)= total bytes of actor code + actor storage + mailbox state at the start of the rent epoch.grace_threshold= 10,240 bytes (10 KB) — no rent below this size.rent_rate= the deployed defaultrent_rate_atto = 2_739_726_027_397_260atto/byte/epoch (≈ 1 CBY/byte/year; governance-tunable, Tier-0 per CIP-12 — see §12.5).rent_epoch_length= 1 day at 1-second blocks per WP §6.1 (i.e., 86,400 blocks per epoch).
- At the start of each rent epoch,
0x09Governance computesrent_due[actor]for every actor with size > grace threshold. - The amount is debited from the actor’s CBY balance.
- If the actor’s balance is insufficient, the unpaid amount accumulates as
rent_debt[actor](system bytes at0x09:system:cip4:rent_debt). - If
rent_debt[actor]exceedseviction_threshold × rent_per_rent_epoch(actor)(defaulteviction_threshold = 10rent epochs), the actor is evicted (state archived; recoverable on debt repayment per §12.3).
12.2 Catch-up
When an actor withrent_debt > 0 next interacts on-chain (e.g., a transaction triggers the actor, or the owner deposits CBY), the catch-up settlement runs:
remaining_debt reaches zero, the eviction countdown resets. The catch-up rate (10%) is system:cip4:rent_catchup_bps = 1000 (Tier-0 tunable).
Rate-stamping for catch-up. The catch-up fee uses the rent rate at the epoch the debt was incurred (rent_rate_at_miss_epoch), not the current rate. This prevents a “rate-hike catch-up trap” where a governance proposal that raises rent_rate would retroactively increase old debts; rate hikes apply prospectively only.
Implementation: each rent-epoch’s rent_rate is snapshotted alongside the rent_debt entry so historical rates persist with the debt.
12.3 Eviction and Restoration
- Eviction (after 10 rent-epochs of unpaid rent — 7 grace + 3 warning): Actor storage and active timers are pruned. Code, address, balance, and storage root hash are preserved. The actor enters a “dormant” state.
- Restoration: anyone may repay the accumulated
rent_debt(withcatch_up_feeper §12.2) and provide the original storage data (verified against the recorded root hash). The actor returns to “active”.
12.4 Storage quotas
Each actor has a base storage quota of 1 MiB, extendable up to 8 MiB via a storage bond. The bond is locked while the quota is in use, returned when reduced, and forfeited if the actor is evicted. Rent applies to the full allocated quota, not the current usage — actors that reserve quota they don’t use pay rent on the reservation, deterring quota hoarding.12.5 Parameters
All Tier-0 governance-tunable (CIP-12 §5.1). Storage: these are not five independent keys — the deployedRentConfig struct (all six fields below) is stored as one JSON blob under the single SystemState key system:cip4:rent_config at Governance (0x0A ‖ keccak256("system:cip4:rent_config"), under actor 0x09), enacted atomically via UpdateRentConfig; a missing key yields RentConfig::defaults(). Field names below are the code field names (node/types/src/execution.rs).
12.6 CBY-denominated rent (Decision Register #4 — HOLD)
The architecture review proposed re-pegging rent to USD via a 7-day TWAP oracle. The analysis Decision Register #4 selected HOLD on CBY-denominated for v1 to avoid introducing a consensus-layer oracle dependency. Operational mitigation:- Monitoring cadence. The Cowboy Foundation publishes monthly the implied USD value of
rent_rate × 1 MiB × 365 days. Target band:[$1, $10] / MiB / yearat the prevailing CBY/USD spot. - Tier-0 adjustment trigger. If the implied USD rent drifts outside the target band for two consecutive monthly reviews, a Tier-0 governance proposal MUST be filed to adjust
rent_rate. - No oracle dependency in v1. A future CIP MAY introduce oracle-anchored rent; this CIP does not.
12.7 Relationship to other CIPs
- CIP-7 retention contracts: separate facility (off-chain blob storage with provider negotiation). State rent in §12 above applies to on-chain QMDB state only.
- CIP-9 / CIP-31 CBFS: separate facility (decentralized off-chain storage via Relay Nodes). CBFS storage fees and Relay economics live in CIP-9 §10.4 + CIP-31, not here.
- WP §17.5: operational summary plus the monitoring cadence above; this CIP §12 is the normative spec.
- WP §13 parameter block: the Tier-0 rent parameters above (the six-field
RentConfig) appear in WP §13 as a one-line reference to this section.
Appendix A: StateValue Variants
Appendix B: Key Prefix Quick Reference
Appendix C: Proof Response Format
loc through digests to ops_root, then verify ops_root matches the state_root from the block header.
