exchange-apiws 0.3.2

Exchange REST and WebSocket clients — spot trading, futures, account management, and live data streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Binance integration — public REST and public WebSocket.
//!
//! No API keys are required: every endpoint and stream exposed here is
//! unauthenticated. Authenticated channels (user-data, account, orders)
//! are intentionally out of scope — this crate is a market-data and
//! infrastructure library for exchanges where the user has either no keys
//! or only public access.

pub mod rest;
pub mod ws;

pub use rest::{
    BinanceBookTicker, BinanceFundingRate, BinanceKline, BinanceMarkPrice, BinanceOpenInterest,
    BinanceOrderBook, BinanceRestClient, BinanceTicker24h, BinanceTrade,
};
pub use ws::BinanceConnector;