ic-query 0.21.0

Internet Computer query library for NNS, SNS, ICRC, system canisters, and public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::{
    NNS_NODE_OPERATOR_CACHE_DIR, NNS_NODE_OPERATOR_CACHE_FILE,
    NNS_NODE_OPERATOR_LIST_REPORT_SCHEMA_VERSION, NnsInventoryCacheRequest,
    NnsNodeOperatorHostError, NnsNodeOperatorListReport,
};

nns_leaf_cache!(
    nns_node_operator_cache_path,
    nns_node_operator_refresh_lock_path,
    load_cached_nns_node_operator_report,
    NnsInventoryCacheRequest,
    NnsNodeOperatorListReport,
    NnsNodeOperatorHostError,
    NNS_NODE_OPERATOR_CACHE_DIR,
    NNS_NODE_OPERATOR_CACHE_FILE,
    NNS_NODE_OPERATOR_LIST_REPORT_SCHEMA_VERSION,
);