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

#[cfg(feature = "host")]
pub use error::NnsNodeProviderHostError;
#[cfg(feature = "host")]
pub use report::NnsNodeProviderRefreshReport;
pub use report::{NnsNodeProviderInfoReport, NnsNodeProviderListReport, NnsNodeProviderRow};
#[cfg(feature = "host")]
pub use request::NnsNodeProviderRefreshRequest;
pub use request::{
    NnsNodeProviderCacheRequest, NnsNodeProviderInfoRequest, NnsNodeProviderListRequest,
};