rhyperliquid 0.2.0

Rust SDK and client for the Hyperliquid exchange API
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

/// An Ethereum ECDSA signature.
#[derive(Debug, Serialize, Deserialize)]
pub struct Eip712Signature {
    pub r: String,
    pub s: String,
    pub v: u8,
}