use super::super::utils::http_get;
use crate::error::Result;
use std::collections::BTreeMap;
const BASE_URL: &str = "https://api.kraken.com";
pub struct KrakenSpotRestClient {
_api_key: Option<String>,
_api_secret: Option<String>,
}
impl KrakenSpotRestClient {
pub fn new(api_key: Option<String>, api_secret: Option<String>) -> Self {
KrakenSpotRestClient { _api_key: api_key, _api_secret: api_secret }
}
#[allow(non_snake_case)]
pub fn fetch_trades(symbol: &str, since: Option<String>) -> Result<String> {
if symbol.contains('/') {
let stripped = symbol.replace('/', "");
gen_api!(format!("/0/public/Trades?pair={}", &stripped), since)
} else {
gen_api!(format!("/0/public/Trades?pair={symbol}"), since)
}
}
pub fn fetch_l2_snapshot(symbol: &str) -> Result<String> {
if symbol.contains('/') {
let stripped = symbol.replace('/', "");
gen_api!(format!("/0/public/Depth?pair={stripped}&count=500"))
} else {
gen_api!(format!("/0/public/Depth?pair={symbol}&count=500"))
}
}
}