pub const FUTURES_BASE_URL: &str = "https://futures.kraken.com/derivatives";
pub const FUTURES_DEMO_URL: &str = "https://demo-futures.kraken.com/derivatives";
pub mod public {
pub const TICKERS: &str = "/api/v3/tickers";
pub const ORDERBOOK: &str = "/api/v3/orderbook";
pub const HISTORY: &str = "/api/v3/history";
pub const INSTRUMENTS: &str = "/api/v3/instruments";
}
pub mod private {
pub const ACCOUNTS: &str = "/api/v3/accounts";
pub const OPEN_POSITIONS: &str = "/api/v3/openpositions";
pub const OPEN_ORDERS: &str = "/api/v3/openorders";
pub const FILLS: &str = "/api/v3/fills";
pub const SEND_ORDER: &str = "/api/v3/sendorder";
pub const EDIT_ORDER: &str = "/api/v3/editorder";
pub const CANCEL_ORDER: &str = "/api/v3/cancelorder";
pub const CANCEL_ALL_ORDERS: &str = "/api/v3/cancelallorders";
pub const CANCEL_ALL_ORDERS_AFTER: &str = "/api/v3/cancelallordersafter";
pub const BATCH_ORDER: &str = "/api/v3/batchorder";
}