ic-query 0.2.21

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
//! Module: sns::report::live::fetch
//!
//! Responsibility: group live SNS fetch helpers.
//! Does not own: Candid wire definitions, report assembly, cache IO, or rendering.
//! Boundary: wraps async IC queries behind synchronous report-source helpers.

mod list;
mod neurons;
mod params;
mod proposals;
mod token;

use super::{
    super::{MainnetSns, SnsHostError},
    query::principal_from_text,
};
use candid::Principal;
use std::future::Future;

pub(super) use list::fetch_mainnet_sns_list;
pub(super) use neurons::{fetch_mainnet_sns_neuron_page, fetch_mainnet_sns_neurons};
pub(super) use params::fetch_mainnet_sns_params;
pub(super) use proposals::{
    fetch_mainnet_sns_proposal, fetch_mainnet_sns_proposal_page, fetch_mainnet_sns_proposals,
};
pub(super) use token::fetch_mainnet_sns_token;

/// Run one async SNS query flow on the current-thread runtime.
fn block_on_sns<T>(
    future: impl Future<Output = Result<T, SnsHostError>>,
) -> Result<T, SnsHostError> {
    crate::runtime::block_on_current_thread(future).map_err(SnsHostError::Runtime)?
}

/// Parse the governance canister id for one resolved SNS.
fn governance_canister(sns: &MainnetSns) -> Result<Principal, SnsHostError> {
    principal_from_text(&sns.governance_canister_id, "governance_canister_id")
}