ic-query 0.18.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
use super::{
    NNS_NODE_CACHE_DIR, NNS_NODE_CACHE_FILE, NNS_NODE_LIST_REPORT_SCHEMA_VERSION,
    NnsInventoryCacheRequest, NnsNodeHostError, NnsNodeListReport,
};

nns_leaf_cache!(
    nns_node_cache_path,
    nns_node_refresh_lock_path,
    load_cached_nns_node_report,
    NnsInventoryCacheRequest,
    NnsNodeListReport,
    NnsNodeHostError,
    NNS_NODE_CACHE_DIR,
    NNS_NODE_CACHE_FILE,
    NNS_NODE_LIST_REPORT_SCHEMA_VERSION,
);