use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://www.zbg.com";
pub struct ZbgSwapRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl ZbgSwapRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
ZbgSwapRestClient { _api_key: api_key, _api_secret: api_secret }
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/exchange/api/v1/future/market/depth?symbol={symbol}&size=1000"))
}
pub fn fetch_open_interest(symbol: &str) -> Result<String> {
gen_api!(format!("/exchange/api/v1/future/market/ticker?symbol={symbol}"))
}
}