ic-query 0.2.24

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Module: sns::report::proposals_cache::storage
//!
//! Responsibility: group proposal snapshot cache loading, lookup, and summaries.
//! Does not own: refresh orchestration, report status assembly, or text rendering.
//! Boundary: re-exports storage helpers used by proposal cache reports.

mod load;
mod lookup;
mod scan;
mod summary;

pub(super) use load::load_sns_proposals_cache_at;
pub(super) use lookup::{
    find_sns_proposals_cache_by_id, load_sns_proposals_cache_for_input_with_path,
};
pub(super) use summary::{list_sns_proposals_cache_summaries, sns_proposals_cache_summary};