Official Rust SDK for the Noesis on-chain intelligence API.
use noesis_api::Noesis; #[tokio::main] async fn main() -> Result<(), noesis::Error> { let client = Noesis::new("se_..."); let preview = client.token_preview("<MINT>").await?; println!("{:?}", preview); Ok(()) }