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
use rust_decimal::Decimal;

#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct Transfer {
    pub id: u64,
    pub coin: String,
    pub size: Decimal,
    pub time: chrono::DateTime<chrono::Utc>,
    pub notes: String,
    pub status: String,
}