Skip to main content

hylo_stats/
lib.rs

1//! # Hylo Stats
2//!
3//! Offchain yield statistics for the Hylo protocol.
4//!
5//! - [`client`] — Read-only fetch layer for earn pool stats (no keypair
6//!   required)
7//! - [`earn_pool_stats`] — Yield statistics computation for sHYUSD
8//! - [`earn_pool_yield_math`] — Pure math for realized and projected earn pool
9//!   yield
10//! - [`types`] — Data types for stats inputs and results
11
12pub mod client;
13pub mod earn_pool_stats;
14pub mod earn_pool_yield_math;
15pub mod error;
16pub mod types;