ccxt-exchanges 0.1.2

Exchange implementations for CCXT Rust
Documentation

CCXT Exchange Implementations

This library contains concrete implementations of cryptocurrency exchanges built on top of ccxt-core.

Supported Exchanges

  • Binance ✅
  • Coinbase (planned)
  • Kraken (planned)
  • ... and more

Example

// use ccxt_exchanges::binance::Binance;

# async fn example() -> Result<(), ccxt_core::Error> {
// let exchange = Binance::new(
//     Some("your_api_key".to_string()),
//     Some("your_secret".to_string())
// );
//
// let markets = exchange.fetch_markets().await?;
// println!("Found {} markets", markets.len());
# Ok(())
# }