madeonsol 0.6.0

Official Rust SDK for the MadeOnSol Solana API — KOL wallet tracking, Pump.fun deployer intelligence, and DEX trade firehose. Free tier: 200 req/day at https://madeonsol.com/developer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::sync::Arc;

use crate::client::HttpCore;
use crate::error::Result;
use crate::types::*;

/// Solana tool directory search.
#[derive(Debug, Clone)]
pub struct Tools {
    pub(crate) core: Arc<HttpCore>,
}

impl Tools {
    /// Search 950+ Solana tools indexed on MadeOnSol.
    pub async fn search(&self, params: &ToolsSearchParams) -> Result<ToolsSearchResponse> {
        self.core.get("/tools/search", params).await
    }
}