#trading #cryptocurrency #blockchain

bin+lib crypto-markets

从加密货币交易所获取交易市场

90 个版本 (42 个稳定版)

1.3.11 2023年3月19日
1.3.10 2022年10月31日
1.3.8 2022年9月6日
1.3.3 2022年7月19日
0.1.4 2020年12月30日

#2870魔法豆

Download history 59/week @ 2024-04-17 58/week @ 2024-04-24 54/week @ 2024-05-01 57/week @ 2024-05-08 54/week @ 2024-05-15 55/week @ 2024-05-22 55/week @ 2024-05-29 68/week @ 2024-06-05 59/week @ 2024-06-12 58/week @ 2024-06-19 50/week @ 2024-06-26 44/week @ 2024-07-03 49/week @ 2024-07-10 53/week @ 2024-07-17 65/week @ 2024-07-24 43/week @ 2024-07-31

218 每月下载
2 个crate中使用(通过 crypto-crawler

Apache-2.0

190KB
5K SLoC

crypto-markets

从加密货币交易所获取交易市场。

示例

use crypto_markets::{fetch_markets, MarketType};

fn main() {
    let markets = fetch_markets("Binance", MarketType::Spot).unwrap();
    println!("{}", serde_json::to_string_pretty(&markets).unwrap())
}

lib.rs:

获取一个加密货币交易所的所有交易对。

示例

use crypto_markets::fetch_markets;
use crypto_market_type::MarketType;

let markets = fetch_markets("binance", MarketType::Spot).unwrap();
println!("{}", serde_json::to_string_pretty(&markets).unwrap())

依赖项

~5–16MB
~249K SLoC