use super::utils::http_get;
use crate::error::Result;
use std::collections::HashMap;
const BASE_URL: &str = "https://api-pub.bitfinex.com";
pub struct BitfinexRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl BitfinexRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
BitfinexRestClient {
_api_key: api_key,
_api_secret: api_secret,
}
}
pub fn fetch_trades(
symbol: &str,
limit: Option<u16>,
start: Option<u64>,
end: Option<u64>,
sort: Option<i8>,
) -> Result<String> {
gen_api!(
format!("/v2/trades/{}/hist", symbol),
limit,
start,
end,
sort
)
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
let len = Some(100);
gen_api!(format!("/v2/book/{}/{}", symbol, "P0"), len)
}
pub fn fetch_l3_snapshot(symbol: &str) -> Result<String> {
let len = Some(100);
gen_api!(format!("/v2/book/{}/R0", symbol), len)
}
}