5 releases (1 stable)
1.0.0 | Feb 12, 2021 |
---|---|
0.4.0 | Feb 16, 2020 |
0.3.0 | Feb 11, 2020 |
0.2.0 | Feb 11, 2020 |
0.1.0 | Feb 9, 2020 |
#9 in #binance
24 downloads per month
110KB
1.5K
SLoC
tokio-binance
Unofficial async client for Binance.
Examples
Add this in your Cargo.toml
:
[dependencies]
tokio-binance = "1.0"
serde_json = "1.0.62"
tokio = { version = "1.2.0", features = ["macros", "time"] }
Client
use tokio_binance::{AccountClient, BINANCE_US_URL, ID};
use serde_json::Value;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = AccountClient::connect("<api-key>", "<secret-key>", BINANCE_US_URL)?;
let response = client
.get_order("BNBUSDT", ID::ClientOId("<uuid>"))
// optional: processing time for request; default is 5000, can't be above 60000.
.with_recv_window(8000)
//
.json::<Value>()
.await?;
Ok(())
}
Websocket
use tokio_binance::*;
use tokio::time::{delay_for, Duration};
use serde_json::Value;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = UserDataClient::connect("<api-key>", BINANCE_US_URL)?;
let value = client.start_stream().json::<Value>().await?;
let listen_key = value["listenKey"].as_str().unwrap();
let listen_key_copy = listen_key.to_string();
tokio::spawn(async move {
loop {
delay_for(Duration::from_secs(30*60)).await;
if let Err(e) = client.keep_alive(&listen_key_copy).text().await {
eprintln!("{}", e);
return
}
}
});
let channel = Channel::UserData(listen_key);
let mut stream = WebSocketStream::connect(channel, BINANCE_US_WSS_URL).await?;
while let Some(value) = stream.json::<Value>().await? {
if channel == value["stream"] {
println!("{}", serde_json::to_string_pretty(&value)?);
}
}
Ok(())
}
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~9–23MB
~355K SLoC