ic-query 0.22.6

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

mod report;

pub use report::{
    DEFAULT_NNS_NODE_SOURCE_ENDPOINT, NNS_NODE_SUBNET_KIND_APPLICATION,
    NNS_NODE_SUBNET_KIND_CLOUD_ENGINE, NNS_NODE_SUBNET_KIND_SYSTEM, NNS_NODE_SUBNET_KIND_UNKNOWN,
    NnsNodeInfoReport, NnsNodeListFilters, NnsNodeListReport, NnsNodeListRequest, NnsNodeRow,
    nns_node_info_report_text, nns_node_list_report_text, nns_node_list_report_verbose_text,
};
#[cfg(feature = "host")]
pub use report::{
    DEFAULT_NODE_REFRESH_LOCK_STALE_SECONDS, NNS_NODE_INFO_REPORT_SCHEMA_VERSION,
    NNS_NODE_LIST_REPORT_SCHEMA_VERSION, NNS_NODE_REFRESH_REPORT_SCHEMA_VERSION, NnsNodeHostError,
    NnsNodeRefreshReport, NnsNodeSource, build_nns_node_info_report,
    build_nns_node_info_report_with_source, build_nns_node_list_report,
    build_nns_node_list_report_with_source, nns_node_cache_path, nns_node_refresh_lock_path,
    nns_node_refresh_report_text, refresh_nns_node_report, refresh_nns_node_report_with_source,
};