hyperliquid 0.2.4

A Rust library for the Hyperliquid API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod api;
mod client;
mod config;
mod error;
mod exchange;
mod info;
mod websocket;

pub use api::Hyperliquid;
pub use config::Config;
pub use error::{Error, Result};
pub use exchange::Exchange;
pub use info::Info;
pub use websocket::Websocket;

pub mod types;
pub mod utils;