guilder-client-hyperliquid 0.7.2

Hyperliquid client for the guilder multi-exchange crypto trading library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod client;
pub mod rate_limiter;
pub(crate) mod ws;
pub use client::*;
pub use client::HyperliquidNetwork;
pub use ws::manager::{is_reconnect_marker, WS_RECONNECTING_MARKER};

/// Token string marking the PERP (futures) ledger row in `get_balance`
/// output. Under the manual-account model spot and futures are SEPARATE
/// ledgers; the futures row is appended LAST and carries `__PERP__` so
/// consumers can split the two without positional fragility.
pub const PERP_LEDGER_TOKEN: &str = "__PERP__";