1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use super::super::utils::http_get;
use std::collections::HashMap;

const BASE_URL: &'static str = "https://www.mxc.co";

/// MXC Spot market.
///
/// * REST API doc: <https://mxcdevelop.github.io/APIDoc/>
/// * Trading at: <https://www.mxc.com/trade/pro>
pub struct MXCSpotRestClient {
    access_key: String,
    _secret_key: Option<String>,
}

impl MXCSpotRestClient {
    pub fn new(access_key: String, secret_key: Option<String>) -> Self {
        MXCSpotRestClient {
            access_key,
            _secret_key: secret_key,
        }
    }

    /// Get latest trades.
    ///
    /// 1000 trades are returned.
    ///
    /// For example: <https://www.mxc.co/open/api/v2/market/deals?symbol=BTC_USDT&limit=1000&api_key=your-access-key>
    #[allow(non_snake_case)]
    pub fn fetch_trades(&self, symbol: &str) -> Result<String, reqwest::Error> {
        gen_api!(format!(
            "/open/api/v2/market/deals?symbol={}&limit=1000&api_key={}",
            symbol, self.access_key
        ))
    }

    /// Get latest Level2 snapshot of orderbook.
    ///
    /// Top 2000 bids and asks will be returned.
    ///
    /// For example: <https://www.mxc.co/open/api/v2/market/depth?symbol=BTC_USDT&depth=2000&api_key=your-access-key>
    pub fn fetch_l2_snapshot(&self, symbol: &str) -> Result<String, reqwest::Error> {
        gen_api!(format!(
            "/open/api/v2/market/depth?symbol={}&depth=2000&api_key={}",
            symbol, self.access_key
        ))
    }
}