cosmic-cinder 0.1.10

Rust terminal UI for Phoenix perpetuals on Solana
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! On-chain data loaders and decoders that feed the TUI.

pub mod position_leaderboard;
pub mod spline_book;
pub mod trader_index;

pub use position_leaderboard::fetch_top_positions;
pub use spline_book::{
    parse_l2_book_from_market_account, parse_spline_data, parse_spline_sequence, L2Level,
    ParsedSplineData,
};
pub use trader_index::{spawn_gti_loader, GtiCache, GtiHandle};