ic-query 0.2.17

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cache;
mod error;
mod paths;
mod refresh;
mod source;

#[cfg(test)]
pub use cache::load_cached_subnet_catalog;
pub use cache::{SubnetCatalogCacheRequest, load_or_refresh_subnet_catalog};
pub use error::SubnetCatalogHostError;
pub use paths::{subnet_catalog_path, subnet_catalog_refresh_lock_path};
pub use refresh::{
    SubnetCatalogRefreshRequest, refresh_subnet_catalog, refresh_subnet_catalog_with_source,
};
pub use source::{LiveNnsRegistryRefreshSource, SubnetCatalogRefreshSource};