ic-query 0.3.8

Internet Computer query CLI for NNS, SNS, ICRC, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Module: icrc
//!
//! Responsibility: top-level generic ICRC ledger query commands.
//! Does not own: SNS lookup, NNS registry cache behavior, or release flow.
//! Boundary: exposes live read-only token metadata, account balance, allowance,
//! index discovery, transaction history, block type, and archive reports.

mod commands;
pub mod ledger;
mod live;
mod model;
mod text;

pub use commands::run;

#[cfg(test)]
mod tests;