Skip to main content

Crate madeonsol

Crate madeonsol 

Source
Expand description

§MadeOnSol — official Rust SDK

Solana KOL wallet tracking, Pump.fun deployer intelligence, alpha-wallet scoring, and an all-DEX trade firehose.

§Get an API key

Free tier: 200 requests/day, no credit card at https://madeonsol.com/pricing. Paid tiers (PRO $49/mo, ULTRA $149/mo) unlock higher rate limits, sub-hour windows, WebSocket streaming, webhooks, and the all-DEX firehose.

All keys start with msk_.

§Quick start

use madeonsol::{MadeOnSol, types::KolFeedParams};

let api_key = std::env::var("MADEONSOL_API_KEY")?;
let client = MadeOnSol::new(api_key)?;

let feed = client
    .kol
    .feed(&KolFeedParams { limit: Some(10), ..Default::default() })
    .await?;

for trade in feed.trades {
    println!("{:?} bought {:?}", trade.kol_name, trade.token_symbol);
}

§Namespaces

Full API reference: https://madeonsol.com/api-docs

Re-exports§

pub use crate::error::MadeOnSolError as Error;

Modules§

api
error
types
Request and response types for every endpoint in the MadeOnSol API.

Structs§

MadeOnSol
MadeOnSol API client.