#trading #cryptocurrency #rest-client #blockchain

crypto-rest-client

适用于所有加密货币交易所的 RESTful 客户端

77 个版本 (2 个稳定版)

1.0.1 2023 年 2 月 18 日
1.0.0 2022 年 10 月 31 日
0.9.9 2022 年 10 月 31 日
0.9.5 2022 年 7 月 19 日
0.1.0 2020 年 12 月 30 日

#59#rest-client


2 个 crate 中使用 (通过 crypto-crawler)

Apache-2.0

94KB
1.5K SLoC

crypto-rest-client

适用于所有加密货币交易所的 RESTful 客户端。

示例

use crypto_rest_client::{BinanceClient};

fn main() {
    let config: HashMap<&str, &str> = vec![
        ("api_key", "your-API-key"),
        ("api_secret", "your-API-secret"),
    ].into_iter().collect();

    let rest_client = BinanceClient::new(config);

    // buy
    let transaction_id = rest_client.place_order("Spot", "btcusdt", 27999.9, 5.0, false);
    println!("{}", transactionId);
}

支持的交易所

  • Binance
  • Huobi
  • OKEx

依赖项

~6–22MB
~303K SLoC