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