quicknode-hyperliquid-sdk 0.1.1

Hyperliquid SDK for Rust - Simple, performant trading client. HyperCore, HyperEVM, WebSocket and gRPC streams.
Documentation
1
2
3
4
5
6
7
8
9
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(false) // We only need the client
        .compile_protos(
            &["proto/streaming.proto", "proto/orderbook.proto"],
            &["proto"],
        )?;
    Ok(())
}