chainstream-sdk 0.1.2

SDK for interacting with the ChainStream API
Documentation

ChainStream Rust SDK

Official Rust client library for ChainStream API.

Installation

Add to your Cargo.toml:

[dependencies]
chainstream-sdk = "0.1"

Quick Start

use chainstream_sdk::Client;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = Client::new("your-access-token")?;
    
    // Use the client for API calls...
    
    Ok(())
}

Documentation

For detailed documentation, visit https://docs.chainstream.io

Development

# Build
make build

# Run tests
make test

# Lint
make lint

# Generate OpenAPI client
make generate

License

MIT