openlimits-exchange 0.3.0

The exchange traits of OpenLimits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This module provides informations about the exchanges
mod exchange_info_retrieval;
mod exchange_info;
mod market_pair_handle;
mod market_pair;
mod utils;

pub use exchange_info_retrieval::ExchangeInfoRetrieval;
pub use exchange_info::ExchangeInfo;
pub use market_pair_handle::MarketPairHandle;
pub use market_pair::MarketPairInfo;
pub use utils::*;
pub use super::shared;