zeldhash-parser 0.5.1

High-performance Bitcoin blockchain parser implementing the ZeldHash protocol
1
2
3
4
5
6
7
8
9
10
//! Persistent storage backends for ZELD data.
//!
//! This module provides two storage systems:
//!
//! - [`sqlite`] — SQLite database for block statistics and reward tracking
//! - [`utxo`] — UTXO store backed by rollblock for O(1) lookups and rollbacks

pub mod queries;
pub mod sqlite;
pub mod utxo;