use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://www.mexc.com";
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> {
gen_api!(format!(
"/open/api/v2/market/deals?symbol={}&limit=1000",
symbol
))
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!(
"/open/api/v2/market/depth?symbol={}&depth=2000",
symbol
))
}
}