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
48
49
50
51
52
53
54
55
56
57
58
use super::super::utils::http_get;
use crate::error::Result;
use std::collections::HashMap;
const BASE_URL: &str = "https://www.mxc.co";
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: access_key,
_secret_key: secret_key,
}
}
#[allow(non_snake_case)]
pub fn fetch_trades(symbol: &str) -> Result<String> {
if std::env::var("MXC_ACCESS_KEY").is_err() {
panic!("MXC Spot REST APIs require access key, please set it to the MXC_ACCESS_KEY environment variable");
}
let access_key = std::env::var("MXC_ACCESS_KEY").unwrap();
gen_api!(format!(
"/open/api/v2/market/deals?symbol={}&limit=1000&api_key={}",
symbol, access_key
))
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
if std::env::var("MXC_ACCESS_KEY").is_err() {
panic!("MXC Spot REST APIs require access key, please set it to the MXC_ACCESS_KEY environment variable");
}
let access_key = std::env::var("MXC_ACCESS_KEY").unwrap();
gen_api!(format!(
"/open/api/v2/market/depth?symbol={}&depth=2000&api_key={}",
symbol, access_key
))
}
}