ic-query 0.2.10

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
use crate::nns::{
    NnsCommandError, command_icp_root, leaf::NnsLeafCacheRequest, node::report::NnsNodeCacheRequest,
};

pub(super) fn cache_request(network: &str) -> Result<NnsNodeCacheRequest, NnsCommandError> {
    let icp_root = command_icp_root()?;
    Ok(NnsNodeCacheRequest::from_root_network(&icp_root, network))
}