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
13
14
15
16
use chrono::{DateTime, Utc};

#[derive(Debug, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SavedAddress {
    pub id: u64,
    pub address: String,
    pub coin: String,
    pub name: String,
    pub fiat: bool,
    pub is_primetrust: bool,
    pub last_used_at: DateTime<Utc>,
    pub tag: Option<String>,
    pub whitelisted: Option<bool>,
    pub whitelisted_after: Option<DateTime<Utc>>,
}