1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//! Ecbt integrates a high-performance cryptocurrency transaction API, which can be easily used by users.
//!
//! # Example
//!
//! The Binance Http Api of Ecbt is:
//!
//! ```rust,no_run
//! use std::borrow::Borrow;
//!
//! use ecbt::{
//! prelude::{
//! market_pair::{Currency, MarketPair},
//! GetPriceTickerRequest,
//! },
//! Ecbt,
//! };
//!
//! use ecbt_binance::{Binance, BinanceParameters};
//! use ecbt_exchange::ExchangeMarketData;
//!
//! #[tokio::main]
//! async fn main() {
//! let ecbt = Ecbt::http::<Binance>(BinanceParameters::sandbox())
//! .await
//! .unwrap();
//! let request = GetPriceTickerRequest {
//! market_pair: MarketPair(Currency::ETH, Currency::USDT),
//! };
//! let s = ecbt.get_price_ticker(request.borrow()).await.unwrap();
//! println!("{:?}", s);
//! }
//! ```
//!
//! The Binance WebSocket of Ecbt is:
//!
//! ```rust,no_run
//! use ecbt::{
//! model::websocket::{EcbtWebSocketMessage, Subscription, WebSocketResponse},
//! prelude::{
//! market_pair::{Currency, MarketPair},
//! ExchangeStream,
//! },
//! Ecbt,
//! };
//!
//! use ecbt_binance::{BinanceParameters, BinanceWebsocket};
//!
//! #[tokio::main]
//! async fn main() {
//! let ecbt = Ecbt::ws::<BinanceWebsocket>(BinanceParameters::sandbox())
//! .await
//! .unwrap();
//! let market = MarketPair(Currency::ETH, Currency::BTC);
//!
//! ecbt.subscribe(Subscription::OrderBookUpdates(market), move |m| {
//! let r = m.as_ref();
//!
//! if let Ok(WebSocketResponse::Generic(EcbtWebSocketMessage::OrderBook(order_book))) = r {
//! println!("{:?}", order_book)
//! } else if let Err(err) = r {
//! println!("{:#?}", err);
//! }
//! })
//! .await
//! .expect("Failed to subscribe to orderbook on Binance");
//!
//! std::thread::sleep(std::time::Duration::from_millis(5000));
//! }
//!
//! ```
use ExchangeStream;
use Exchange;
pub use crate errors;
pub use crate model;
use crate Result;