ccxt-exchanges 0.1.5

Exchange implementations for CCXT Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
//! HyperLiquid exchange implementation.
//!
//! HyperLiquid is a decentralized perpetual futures exchange built on its own L1 blockchain.
//! Unlike centralized exchanges (CEX) like Binance or Bitget, HyperLiquid uses:
//! - Ethereum wallet private keys for authentication (EIP-712 typed data signatures)
//! - Wallet addresses as account identifiers (no registration required)
//! - USDC as the sole settlement currency
//!
//! # Features
//!
//! - Perpetual futures trading with up to 50x leverage
//! - Cross-margin and isolated margin modes
//! - Real-time WebSocket data streaming
//! - EIP-712 compliant transaction signing
//!
//! # Note on Market Types
//!
//! HyperLiquid only supports perpetual futures (Swap). Attempting to configure
//! other market types (Spot, Futures, Margin, Option) will result in an error.
//!
//! # Example
//!
//! ```no_run
//! use ccxt_exchanges::hyperliquid::HyperLiquid;
//!
//! # async fn example() -> ccxt_core::Result<()> {
//! // Create a public-only instance (no authentication)
//! let exchange = HyperLiquid::builder()
//!     .testnet(true)
//!     .build()?;
//!
//! // Fetch markets
//! let markets = exchange.fetch_markets().await?;
//! println!("Found {} markets", markets.len());
//!
//! // Create an authenticated instance
//! let exchange = HyperLiquid::builder()
//!     .private_key("0x...")
//!     .testnet(true)
//!     .build()?;
//!
//! // Fetch balance
//! let balance = exchange.fetch_balance().await?;
//! # Ok(())
//! # }
//! ```

use ccxt_core::types::default_type::DefaultType;
use ccxt_core::{BaseExchange, ExchangeConfig, Result};

pub mod auth;
pub mod builder;
pub mod endpoint_router;
pub mod error;
mod exchange_impl;
pub mod parser;
pub mod rest;
pub mod signed_request;
pub mod ws;
mod ws_exchange_impl;

pub use auth::HyperLiquidAuth;
pub use builder::{HyperLiquidBuilder, validate_default_type};
pub use endpoint_router::HyperLiquidEndpointRouter;
pub use error::{HyperLiquidErrorCode, is_error_response, parse_error};

/// HyperLiquid exchange structure.
#[derive(Debug)]
pub struct HyperLiquid {
    /// Base exchange instance.
    base: BaseExchange,
    /// HyperLiquid-specific options.
    options: HyperLiquidOptions,
    /// Authentication instance (optional, for private API).
    auth: Option<HyperLiquidAuth>,
    /// Persistent WebSocket connection reference.
    pub(crate) ws_connection: std::sync::Arc<tokio::sync::RwLock<Option<ws::HyperLiquidWs>>>,
}

/// HyperLiquid-specific options.
///
/// Note: HyperLiquid only supports perpetual futures (Swap). The `default_type`
/// field defaults to `Swap` and attempting to set it to any other value will
/// result in a validation error.
#[derive(Debug, Clone)]
pub struct HyperLiquidOptions {
    /// Whether to use testnet.
    pub testnet: bool,
    /// Vault address for vault trading (optional).
    pub vault_address: Option<String>,
    /// Default leverage multiplier.
    pub default_leverage: u32,
    /// Default market type for trading.
    ///
    /// HyperLiquid only supports perpetual futures, so this must be `Swap`.
    /// Attempting to set any other value will result in a validation error.
    pub default_type: DefaultType,
}

impl Default for HyperLiquidOptions {
    fn default() -> Self {
        Self {
            testnet: false,
            vault_address: None,
            default_leverage: 1,
            // HyperLiquid only supports perpetual futures (Swap)
            default_type: DefaultType::Swap,
        }
    }
}

impl HyperLiquid {
    /// Creates a new HyperLiquid instance using the builder pattern.
    ///
    /// This is the recommended way to create a HyperLiquid instance.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use ccxt_exchanges::hyperliquid::HyperLiquid;
    ///
    /// let exchange = HyperLiquid::builder()
    ///     .private_key("0x...")
    ///     .testnet(true)
    ///     .build()
    ///     .unwrap();
    /// ```
    pub fn builder() -> HyperLiquidBuilder {
        HyperLiquidBuilder::new()
    }

    /// Creates a new HyperLiquid instance with custom options.
    ///
    /// This is used internally by the builder pattern.
    ///
    /// # Arguments
    ///
    /// * `config` - Exchange configuration.
    /// * `options` - HyperLiquid-specific options.
    /// * `auth` - Optional authentication instance.
    pub fn new_with_options(
        config: ExchangeConfig,
        options: HyperLiquidOptions,
        auth: Option<HyperLiquidAuth>,
    ) -> Result<Self> {
        let base = BaseExchange::new(config)?;
        Ok(Self {
            base,
            options,
            auth,
            ws_connection: std::sync::Arc::new(tokio::sync::RwLock::new(None)),
        })
    }

    /// Returns a reference to the base exchange.
    pub fn base(&self) -> &BaseExchange {
        &self.base
    }

    /// Returns a mutable reference to the base exchange.
    pub fn base_mut(&mut self) -> &mut BaseExchange {
        &mut self.base
    }

    /// Returns the HyperLiquid options.
    pub fn options(&self) -> &HyperLiquidOptions {
        &self.options
    }

    /// Returns a reference to the authentication instance.
    pub fn auth(&self) -> Option<&HyperLiquidAuth> {
        self.auth.as_ref()
    }

    /// Creates a signed action builder for authenticated exchange requests.
    ///
    /// This method provides a fluent API for constructing and executing
    /// authenticated Hyperliquid exchange actions using EIP-712 signing.
    ///
    /// # Arguments
    ///
    /// * `action` - The action JSON to be signed and executed
    ///
    /// # Returns
    ///
    /// A `HyperliquidSignedRequestBuilder` that can be configured and executed.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use ccxt_exchanges::hyperliquid::HyperLiquid;
    /// use serde_json::json;
    ///
    /// # async fn example() -> ccxt_core::Result<()> {
    /// let exchange = HyperLiquid::builder()
    ///     .private_key("0x...")
    ///     .testnet(true)
    ///     .build()?;
    ///
    /// // Create an order
    /// let action = json!({
    ///     "type": "order",
    ///     "orders": [{"a": 0, "b": true, "p": "50000", "s": "0.001", "r": false, "t": {"limit": {"tif": "Gtc"}}}],
    ///     "grouping": "na"
    /// });
    ///
    /// let response = exchange.signed_action(action)
    ///     .execute()
    ///     .await?;
    /// # Ok(())
    /// # }
    /// ```
    pub fn signed_action(
        &self,
        action: serde_json::Value,
    ) -> signed_request::HyperliquidSignedRequestBuilder<'_> {
        signed_request::HyperliquidSignedRequestBuilder::new(self, action)
    }

    /// Returns the exchange ID.
    pub fn id(&self) -> &'static str {
        "hyperliquid"
    }

    /// Returns the exchange name.
    pub fn name(&self) -> &'static str {
        "HyperLiquid"
    }

    /// Returns the API version.
    pub fn version(&self) -> &'static str {
        "1"
    }

    /// Returns `true` if the exchange is CCXT-certified.
    pub fn certified(&self) -> bool {
        false
    }

    /// Returns `true` if Pro version (WebSocket) is supported.
    pub fn pro(&self) -> bool {
        true
    }

    /// Returns the rate limit in requests per second.
    pub fn rate_limit(&self) -> u32 {
        // HyperLiquid has generous rate limits
        100
    }

    /// Returns `true` if sandbox/testnet mode is enabled.
    ///
    /// Sandbox mode is enabled when either:
    /// - `config.sandbox` is set to `true`
    /// - `options.testnet` is set to `true`
    ///
    /// # Returns
    ///
    /// `true` if sandbox mode is enabled, `false` otherwise.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use ccxt_exchanges::hyperliquid::HyperLiquid;
    ///
    /// let exchange = HyperLiquid::builder()
    ///     .testnet(true)
    ///     .build()
    ///     .unwrap();
    /// assert!(exchange.is_sandbox());
    /// ```
    pub fn is_sandbox(&self) -> bool {
        self.base().config.sandbox || self.options.testnet
    }

    /// Returns the API URLs.
    ///
    /// Returns testnet URLs when sandbox mode is enabled (either via
    /// `config.sandbox` or `options.testnet`), otherwise returns mainnet URLs.
    pub fn urls(&self) -> HyperLiquidUrls {
        if self.is_sandbox() {
            HyperLiquidUrls::testnet()
        } else {
            HyperLiquidUrls::mainnet()
        }
    }

    /// Returns the wallet address if authenticated.
    pub fn wallet_address(&self) -> Option<&str> {
        self.auth
            .as_ref()
            .map(auth::HyperLiquidAuth::wallet_address)
    }

    /// Creates a WebSocket client for public data streams.
    pub fn create_ws(&self) -> ws::HyperLiquidWs {
        let urls = self.urls();
        ws::HyperLiquidWs::new(urls.ws)
    }
}

/// HyperLiquid API URLs.
#[derive(Debug, Clone)]
pub struct HyperLiquidUrls {
    /// REST API base URL.
    pub rest: String,
    /// WebSocket URL.
    pub ws: String,
}

impl HyperLiquidUrls {
    /// Returns mainnet environment URLs.
    pub fn mainnet() -> Self {
        Self {
            rest: "https://api.hyperliquid.xyz".to_string(),
            ws: "wss://api.hyperliquid.xyz/ws".to_string(),
        }
    }

    /// Returns testnet environment URLs.
    pub fn testnet() -> Self {
        Self {
            rest: "https://api.hyperliquid-testnet.xyz".to_string(),
            ws: "wss://api.hyperliquid-testnet.xyz/ws".to_string(),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_default_options() {
        let options = HyperLiquidOptions::default();
        assert!(!options.testnet);
        assert!(options.vault_address.is_none());
        assert_eq!(options.default_leverage, 1);
        // HyperLiquid only supports perpetual futures, so default_type must be Swap
        assert_eq!(options.default_type, DefaultType::Swap);
    }

    #[test]
    fn test_mainnet_urls() {
        let urls = HyperLiquidUrls::mainnet();
        assert_eq!(urls.rest, "https://api.hyperliquid.xyz");
        assert_eq!(urls.ws, "wss://api.hyperliquid.xyz/ws");
    }

    #[test]
    fn test_testnet_urls() {
        let urls = HyperLiquidUrls::testnet();
        assert_eq!(urls.rest, "https://api.hyperliquid-testnet.xyz");
        assert_eq!(urls.ws, "wss://api.hyperliquid-testnet.xyz/ws");
    }

    #[test]
    fn test_is_sandbox_with_options_testnet() {
        let config = ExchangeConfig::default();
        let options = HyperLiquidOptions {
            testnet: true,
            ..Default::default()
        };
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        assert!(exchange.is_sandbox());
    }

    #[test]
    fn test_is_sandbox_with_config_sandbox() {
        let config = ExchangeConfig {
            sandbox: true,
            ..Default::default()
        };
        let options = HyperLiquidOptions::default();
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        assert!(exchange.is_sandbox());
    }

    #[test]
    fn test_is_sandbox_false_by_default() {
        let config = ExchangeConfig::default();
        let options = HyperLiquidOptions::default();
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        assert!(!exchange.is_sandbox());
    }

    #[test]
    fn test_urls_returns_mainnet_by_default() {
        let config = ExchangeConfig::default();
        let options = HyperLiquidOptions::default();
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        let urls = exchange.urls();
        assert_eq!(urls.rest, "https://api.hyperliquid.xyz");
        assert_eq!(urls.ws, "wss://api.hyperliquid.xyz/ws");
    }

    #[test]
    fn test_urls_returns_testnet_with_options_testnet() {
        let config = ExchangeConfig::default();
        let options = HyperLiquidOptions {
            testnet: true,
            ..Default::default()
        };
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        let urls = exchange.urls();
        assert_eq!(urls.rest, "https://api.hyperliquid-testnet.xyz");
        assert_eq!(urls.ws, "wss://api.hyperliquid-testnet.xyz/ws");
    }

    #[test]
    fn test_urls_returns_testnet_with_config_sandbox() {
        let config = ExchangeConfig {
            sandbox: true,
            ..Default::default()
        };
        let options = HyperLiquidOptions::default();
        let exchange = HyperLiquid::new_with_options(config, options, None).unwrap();
        let urls = exchange.urls();
        assert_eq!(urls.rest, "https://api.hyperliquid-testnet.xyz");
        assert_eq!(urls.ws, "wss://api.hyperliquid-testnet.xyz/ws");
    }
}