This is a Rust library for communicating with cryptocurrency exchange APIs.
This library:
- is asynchronous
- supports WebSocket
- supports deserializing responses into user-defined types
The following APIs are currently supported.
- Binance (Examples)
- bitFlyer (Examples)
- HTTP API
- Realtime API (Socket.IO not supported)
- Bybit (Examples)
- Derivatives v3 Unified Margin (WebSocket)
- Derivatives v3 Contract (WebSocket)
- Futures v2 Inverse Perpetual (WebSocket)
- Futures v2 USDT Perpetual (WebSocket)
- Futures v2 Inverse Futures (WebSocket)
- Spot v3 (WebSocket)
- Spot v1 (WebSocket)
- Account Asset v3
- Account Asset v1
- Copy Trading (WebSocket)
- USDC Contract Option (WebSocket)
- USDC Contract Perpetual (WebSocket)
- Tax
- Coincheck (Examples)
More than 20 examples can be found in the examples directory.
Cargo.toml:
[dependencies]
crypto-botters = { version = "0.4", features = ["binance", "bitflyer", "bybit", "coincheck"] }
Enable the features for the exchanges that you use.
use std::env;
use crypto_botters::{Client, binance::{BinanceAuth, BinanceHttpUrl, BinanceOption}};
#[tokio::main]
async fn main() {
let key = env::var("BINANCE_API_KEY").expect("no API key found");
let secret = env::var("BINANCE_API_SECRET").expect("no API secret found");
let mut client = Client::new();
client.update_default_option(BinanceOption::Key(key));
client.update_default_option(BinanceOption::Secret(secret));
let dusts: serde_json::Value = client.post_no_body(
"https://api.binance.com/sapi/v1/asset/dust-btc",
[BinanceOption::HttpAuth(BinanceAuth::Sign)],
).await.expect("failed get dusts");
println!("My dust assets(BTC):\n{:?}", dusts["totalTransferBtc"]);
}
The above code queries assets that are convertable into BNB using the Binance API.
When making a request, you pass some options to, for example, the post_no_body
function.
In the example, [BinanceOption::HttpAuth(BinanceAuth::Sign)]
is the options.
You would usually pass an array of options.
The options are for:
- setting API key/secret
- enabling authentication
etc.
The type of options passed is what determines the exchange used. In the above example, the library knows
the request is for Binance because the type of the option passed is BinanceOption
. When using Bybit,
you would pass an array of BybitOption
s.
Some options are the same across requests. For example, you will probably use the same API key for each request.
For those options, you can set default options for Client
. Default options are applied to all requests.
In the above example, client.update_default_option(BinanceOption::Key(key));
sets the option for Binance API key as a default option.
Because of this, passing an option for API key in post_no_body()
is not required.
Responses are automatically deserialized into the specified type. In the above example, the response is of the type serde_json::Value
because we specified the type of dusts
. Any type that implements DeserializeOwned
is supported.
use std::time::Duration;
use log::LevelFilter;
use crypto_botters::{binance::{BinanceOption, BinanceWebSocketUrl}, Client};
#[tokio::main]
async fn main() {
let client = Client::new();
let connection = client.websocket(
"/ws/btcusdt@trade",
|message| println!("{}", message),
[BinanceOption::WebSocketUrl(BinanceWebSocketUrl::Spot443)],
).await.expect("failed to connect websocket");
// receive messages
tokio::time::sleep(Duration::from_secs(10)).await;
}
The above code opens a WebSocket connection and watches BTCUSDT trades happening on Binance.
The Client::websocket()
method returns a WebSocketConnection
. Using this, you can send messages,
request a reconnection, or close the connection.
これは仮想通貨取引所のAPIと通信するためのRustライブラリです。
特徴:
- 非同期
- WebSocketに対応
- レスポンスをユーザーの定義した型に変換
以下のAPIに対応しています。
- Binance (例)
- bitFlyer (例)
- HTTP API
- Realtime API (Socket.IO は非対応)
- Bybit (例)
- Derivatives v3 Unified Margin (WebSocket)
- Derivatives v3 Contract (WebSocket)
- Futures v2 Inverse Perpetual (WebSocket)
- Futures v2 USDT Perpetual (WebSocket)
- Futures v2 Inverse Futures (WebSocket)
- Spot v3 (WebSocket)
- Spot v1 (WebSocket)
- Account Asset v3
- Account Asset v1
- Copy Trading (WebSocket)
- USDC Contract Option (WebSocket)
- USDC Contract Perpetual (WebSocket)
- Tax
- Coincheck (例)
examples ディレクトリ にサンプルが20以上あります。
Cargo.toml:
[dependencies]
crypto-botters = { version = "0.4", features = ["binance", "bitflyer", "bybit", "coincheck"] }
使いたい取引所のfeatureを有効化してください。
use std::env;
use crypto_botters::{Client, binance::{BinanceAuth, BinanceHttpUrl, BinanceOption}};
#[tokio::main]
async fn main() {
let key = env::var("BINANCE_API_KEY").expect("no API key found");
let secret = env::var("BINANCE_API_SECRET").expect("no API secret found");
let mut client = Client::new();
client.update_default_option(BinanceOption::Key(key));
client.update_default_option(BinanceOption::Secret(secret));
let dusts: serde_json::Value = client.post_no_body(
"https://api.binance.com/sapi/v1/asset/dust-btc",
[BinanceOption::HttpAuth(BinanceAuth::Sign)],
).await.expect("failed get dusts");
println!("My dust assets(BTC):\n{:?}", dusts["totalTransferBtc"]);
}
この例では、BinanceでBNBに変換できる資産を取得しています。
リクエストを送るときには、オプションを設定できます。この例では、[BinanceOption::HttpAuth(BinanceAuth::Sign)]
がオプションです。
普通はオプションの配列として渡します。
オプションは
- APIキーやシークレットを指定する
- 認証を有効にする
などのために設定します。
オプションの型がどの取引所を使うかを定めます。この例ではBinanceOption
型を渡しているため、Binance用に認証アルゴリズムが
用いられます。BybitOption
を渡せばBybitへのリクエストとして扱われます。
複数のリクエスト間で変わらないオプションもあります。例えば、すべてのリクエストで同じAPIキーを使うことが多いと思います。
そのようなオプションはデフォルトオプションとしてClient
に設定できます。デフォルトオプションは、そのClient
を
使って送られるすべてのリクエストに適用されます。
この例では、client.update_default_option(BinanceOption::Key(key));
でAPIキーのオプションをデフォルトオプションとして設定
しています。このため、post_no_body()
にAPIキーのオプションを指定する必要がなくなっています。
レスポンスは指定した型に自動的に変換されます。この例では、dusts
の型をserde_json::Value
と指定しているため、
レスポンスが自動でserde_json::Value
型に変換されています。DeserializeOwned
を実装している肩ならどんな型でも指定できます。
use std::time::Duration;
use log::LevelFilter;
use crypto_botters::{binance::{BinanceOption, BinanceWebSocketUrl}, Client};
#[tokio::main]
async fn main() {
let client = Client::new();
let connection = client.websocket(
"/ws/btcusdt@trade",
|message| println!("{}", message),
[BinanceOption::WebSocketUrl(BinanceWebSocketUrl::Spot443)],
).await.expect("failed to connect websocket");
// receive messages
tokio::time::sleep(Duration::from_secs(10)).await;
}
この例では、BinanceのBTCUSDTの取引をリアルタイムで受信しています。
Client::websocket()
メソッドはWebSocketConnection
を返します。これに対し、メッセージを送信する、再接続を要求する、接続を
切断するなどの処理が行なえます。
開発者:@negi_grass