ic-query 0.2.17

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
//! Module: sns::report::view
//!
//! Responsibility: apply report view options to in-memory SNS rows.
//! Does not own: command parsing, source fetching, cache loading, or rendering.
//! Boundary: transforms already-collected rows before report DTO assembly.

mod list;
mod neurons;
mod proposals;

pub(in crate::sns::report) use list::sort_mainnet_sns_instances;
pub(in crate::sns::report) use neurons::sort_sns_neurons;
pub(in crate::sns::report) use proposals::{
    proposal_matches_before, proposal_matches_status, sort_sns_proposal_rows,
};