normal-rust-types 0.1.5

A common Rust types library for the entire Normal ecosystem
Documentation
pub mod config;
pub mod enums;
pub mod fees;
pub mod index;
pub mod rebalance;
pub mod trading;

// AMM-specific type modules
pub mod amm_config;
pub mod oracle;
pub mod pool;

pub mod insurance_fund;
pub mod rewards;

// Re-export all types for easy access
pub use config::*;
pub use enums::*;
pub use fees::*;
pub use index::*;
pub use rebalance::*;
pub use trading::*;

// AMM-specific type exports
pub use amm_config::*;
pub use oracle::*;
pub use pool::*;

// Additional AMM type exports from PR #91
pub use insurance_fund::*;
pub use rewards::*;