Skip to main content

Crate noesis_api

Crate noesis_api 

Source
Expand description

Official Rust SDK for the Noesis on-chain intelligence API.

§Example

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(())
}

Structs§

Noesis

Enums§

Error

Type Aliases§

Result