crypto_exc_all 0.1.0

Unified cryptocurrency exchange SDK facade
Documentation
pub mod account;
pub mod adapters;
pub mod config;
pub mod error;
pub mod exchange;
pub mod instrument;
pub mod market;
pub mod sdk;

pub mod raw {
    #[cfg(feature = "binance")]
    pub use binance_rs as binance;

    #[cfg(feature = "okx")]
    pub use okx_rs as okx;
}

pub use account::{AccountFacade, Balance};
pub use config::{BinanceExchangeConfig, OkxExchangeConfig, SdkConfig};
pub use error::{Error, Result};
pub use exchange::ExchangeId;
pub use instrument::{Instrument, MarketType};
pub use market::{MarketFacade, Ticker};
pub use sdk::CryptoSdk;