crypto-markets 1.3.11

Fetch trading markets from a cryptocurrency exchange
Documentation
mod kucoin_spot;
mod kucoin_swap;

use crate::{error::Result, Market, MarketType};

pub(crate) fn fetch_symbols(market_type: MarketType) -> Result<Vec<String>> {
    match market_type {
        MarketType::Spot => kucoin_spot::fetch_spot_symbols(),
        MarketType::InverseSwap => kucoin_swap::fetch_inverse_swap_symbols(),
        MarketType::LinearSwap => kucoin_swap::fetch_linear_swap_symbols(),
        MarketType::InverseFuture => kucoin_swap::fetch_inverse_future_symbols(),
        _ => panic!("Unsupported market_type: {market_type}"),
    }
}

pub(crate) fn fetch_markets(market_type: MarketType) -> Result<Vec<Market>> {
    match market_type {
        MarketType::Spot => kucoin_spot::fetch_spot_markets(),
        MarketType::InverseSwap => kucoin_swap::fetch_inverse_swap_markets(),
        MarketType::LinearSwap => kucoin_swap::fetch_linear_swap_markets(),
        MarketType::InverseFuture => kucoin_swap::fetch_inverse_future_markets(),
        _ => panic!("Unsupported market_type: {market_type}"),
    }
}