//! BitMEX URL constants and endpoint helpers.
/// Mainnet WebSocket URL.
pub const WS_URL: &str = "wss://ws.bitmex.com/realtime";
/// Testnet WebSocket URL.
pub const WS_URL_TESTNET: &str = "wss://ws.testnet.bitmex.com/realtime";
/// Mainnet REST base URL.
pub const REST_URL: &str = "https://www.bitmex.com/api/v1";
/// Testnet REST base URL.
pub const REST_URL_TESTNET: &str = "https://testnet.bitmex.com/api/v1";