Crate crypto_markets[][src]

Expand description

Get all trading pairs of a cryptocurrency exchange.

Example

use crypto_markets::{fetch_markets, MarketType};

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

Structs

Market contains all information about a market

Enums

Market type.

Functions

Fetch trading markets of a cryptocurrency exchange.

Fetch trading symbols.

Get market types of a cryptocurrency exchange.