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
//! # Gate.io Exchange Connector
//!
//! Full implementation of Gate.io V4 API connector.
//!
//! ## Structure
//!
//! - `endpoints` - URLs and endpoint enum
//! - `auth` - Request signing (HMAC-SHA512)
//! - `parser` - JSON response parsing
//! - `connector` - GateioConnector + trait implementations
//! - `websocket` - WebSocket connection (UniversalWsTransport-based)
//! - `protocol` - WsProtocol shim (GateIoProtocol)
//!
//! ## Usage
//!
//! ```ignore
//! use connectors_v5::exchanges::gateio::GateioConnector;
//!
//! let connector = GateioConnector::new(credentials, false).await?;
//!
//! // Core methods (from traits)
//! let price = connector.get_price(symbol, AccountType::Spot).await?;
//! let order = connector.market_order(symbol, side, qty, AccountType::Spot).await?;
//! ```
pub use ;
pub use GateioAuth;
pub use GateioParser;
pub use GateioConnector;
pub use GateioWebSocket;