1 2 3 4 5 6 7 8 9 10
//! Solwatch — real-data Solana memecoin auditor. Library entry points: //! `audit::audit_token`, `scan::scan_new_launches`, `report::*`. pub mod audit; pub mod chain; pub mod checks; pub mod config; pub mod report; pub mod scan; pub mod types;