use super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://global-openapi.bithumb.pro/openapi/v1";
pub struct BithumbRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BithumbRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BithumbRestClient { _api_key: api_key, _api_secret: api_secret }
}
pub fn fetch_trades(symbol: &str) -> Result<String> {
gen_api!(format!("/spot/trades?symbol={symbol}"))
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
gen_api!(format!("/spot/orderBook?symbol={symbol}"))
}
}