ic-query 0.9.0

Internet Computer query library 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
18
pub mod report;

pub use report::{
    DEFAULT_NNS_SOURCE_ENDPOINT, NnsNodeProviderCacheRequest, NnsNodeProviderInfoReport,
    NnsNodeProviderInfoRequest, NnsNodeProviderListReport, NnsNodeProviderListRequest,
    NnsNodeProviderRow, nns_node_provider_info_report_text, nns_node_provider_list_report_text,
    nns_node_provider_list_report_verbose_text,
};
#[cfg(feature = "host")]
pub use report::{
    DEFAULT_NODE_PROVIDER_REFRESH_LOCK_STALE_SECONDS, LiveNnsNodeProviderSource,
    NnsNodeProviderHostError, NnsNodeProviderRefreshReport, NnsNodeProviderRefreshRequest,
    NnsNodeProviderSource, NnsNodeProviderSourceRequest, build_nns_node_provider_info_report,
    build_nns_node_provider_info_report_with_source, build_nns_node_provider_list_report,
    build_nns_node_provider_list_report_with_source, nns_node_provider_cache_path,
    nns_node_provider_refresh_lock_path, nns_node_provider_refresh_report_text,
    refresh_nns_node_provider_report, refresh_nns_node_provider_report_with_source,
};