solana_validator_optimizer/lib.rs
1//! solana-validator-optimizer library interface
2
3/// Version of the crate
4pub const VERSION: &str = "1.0.1";
5
6/// A sample exported function
7pub fn help_summary() -> &'static str {
8 "Optimizes Solana validator performance using snapshot prefetching, RPC caching, and Prometheus metrics."
9}
10