quantus_cli/subsquid/mod.rs
1//! Subsquid indexer client module for privacy-preserving queries.
2//!
3//! This module provides a client for querying the Subsquid indexer using
4//! hash prefix queries, which allows clients to retrieve their transactions
5//! without revealing their exact addresses to the indexer.
6
7mod client;
8mod hash;
9mod types;
10
11pub use client::SubsquidClient;
12pub use hash::{compute_address_hash, get_hash_prefix};
13pub use types::*;