ic-query 0.22.4

Internet Computer query library for NNS, SNS, ICRC, system canisters, and public network metadata
Documentation
//! NNS node-provider inventory requests, reports, host builders, and renderers.

mod report;

pub use report::{
    DEFAULT_NNS_NODE_PROVIDER_SOURCE_ENDPOINT, NnsNodeProviderInfoReport,
    NnsNodeProviderListReport, 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, NNS_NODE_PROVIDER_INFO_REPORT_SCHEMA_VERSION,
    NNS_NODE_PROVIDER_LIST_REPORT_SCHEMA_VERSION, NNS_NODE_PROVIDER_REFRESH_REPORT_SCHEMA_VERSION,
    NnsNodeProviderHostError, NnsNodeProviderRefreshReport, NnsNodeProviderSource,
    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,
};