quantus-cli 1.3.4

Command line interface and library for interacting with the Quantus Network
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Subsquid indexer client module for privacy-preserving queries.
//!
//! This module provides a client for querying the Subsquid indexer using
//! hash prefix queries, which allows clients to retrieve their transactions
//! without revealing their exact addresses to the indexer.

mod client;
mod hash;
mod types;

pub use client::SubsquidClient;
pub use hash::{compute_address_hash, get_hash_prefix};
pub use types::*;