ic-query 0.5.18

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
#[cfg(feature = "host")]
mod error;
mod report;
mod request;

#[cfg(feature = "host")]
pub use error::NnsNodeOperatorHostError;
#[cfg(feature = "host")]
pub use report::NnsNodeOperatorRefreshReport;
pub use report::{NnsNodeOperatorInfoReport, NnsNodeOperatorListReport, NnsNodeOperatorRow};
#[cfg(feature = "host")]
pub use request::NnsNodeOperatorRefreshRequest;
pub use request::{
    NnsNodeOperatorCacheRequest, NnsNodeOperatorInfoRequest, NnsNodeOperatorListRequest,
};