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
use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://api.gateio.ws/api/v4";
pub struct GateFutureRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl GateFutureRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
GateFutureRestClient {
_api_key: api_key,
_api_secret: api_secret,
}
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
let without_date = &symbol[..(symbol.len() - 8)];
let settle = if without_date.ends_with("_USD_") {
"btc"
} else if without_date.ends_with("_USDT_") {
"usdt"
} else {
panic!("Unknown symbol {}", symbol);
};
gen_api!(format!(
"/delivery/{}/order_book?contract={}&limit=50",
settle, symbol
))
}
}