rusftx 0.4.0

Rust bindings for the FTX REST and Websocket API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct DepositAddress {
    pub address: String,
    pub tag: Option<String>,
}

#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct DepositAddressWithCoin {
    pub coin: String,
    #[serde(flatten)]
    pub deposit_address: DepositAddress,
}