1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
use serde::{Deserialize, Serialize};

use strum_macros::Display;

#[derive(Display)]
pub enum Symbol {
    BF1,
    BTC,
    DVC,
    GHS,
    IXC,
    LTC,
    NMC,
    USD,
    EUR,
    ETH,
    XRP,
    BCH,
    BTG,
    DASH,
    XLM,
    ZEC,
    RUB,
}

pub fn symbols_to_string(symbols: Vec<Symbol>) -> String {
    symbols
        .iter()
        .map(|s| s.to_string())
        .collect::<Vec<String>>()
        .join("/")
}

#[derive(Deserialize, Debug)]
pub struct CurrencyLimitsPair {
    pub symbol1: String,
    pub symbol2: String,
    pub minLotSize: f64,
    pub minLotSizeS2: f64,
    // pub maxLotSize: f64,
    pub minPrice: String,
    pub maxPrice: String,
}

#[derive(Deserialize, Debug)]
pub struct CurrencyLimitsData {
    pub pairs: Vec<CurrencyLimitsPair>,
}

#[derive(Deserialize, Debug)]
pub struct CurrencyLimitsResult {
    pub e: String,
    pub ok: String,
    pub data: CurrencyLimitsData,
}
#[derive(Deserialize, Debug)]
pub struct TickerResult {
    pub timestamp: String,
    pub low: String,
    pub high: String,
    pub last: String,
    pub volume: String,
    pub volume30d: String,
    pub bid: f32,
    pub ask: f32,
}

#[derive(Debug, Deserialize)]
pub struct TickerMarketsData {
    pub volume: String,
    pub last: String,
    pub timestamp: String,
    pub bid: f64,
    pub high: String,
    pub ask: f64,
    pub low: String,
    pub pair: String,
    pub volume30d: String,
}

#[derive(Debug, Deserialize)]
pub struct TickerMarketsResult {
    pub ok: String,
    pub e: String,
    pub data: Vec<TickerMarketsData>,
}

#[derive(Deserialize, Debug)]
pub struct LastPriceResult {
    pub lprice: String,
    pub curr1: String,
    pub curr2: String,
}

#[derive(Deserialize, Debug)]
pub struct LastPriceData {
    pub symbol1: String,
    pub symbol2: String,
    pub lprice: String,
}

#[derive(Deserialize, Debug)]
pub struct LastPriceMarketsResult {
    pub e: String,
    pub ok: String,
    pub data: Vec<LastPriceData>,
}

#[derive(Debug, Deserialize)]
pub struct ConvertResult {
    pub amnt: f64,
}

#[derive(Debug, Deserialize)]
pub struct BTC {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct BCH {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct ETH {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct LTC {
    pub available: String,
    pub orders: String,
}
#[derive(Debug, Deserialize)]
pub struct DASH {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct ZEC {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct USD {
    pub available: String,
    pub orders: String,
}
#[derive(Debug, Deserialize)]
pub struct EUR {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct GBP {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct RUB {
    pub available: String,
    pub orders: String,
}

#[derive(Debug, Deserialize)]
pub struct BalanceResult {
    pub timestamp: String,
    pub username: String,
    pub BTC: BTC,
    pub BCH: BCH,
    pub ETH: ETH,
    pub LTC: LTC,
    pub DASH: DASH,
    pub ZEC: ZEC,
    pub USD: USD,
    pub EUR: EUR,
    pub GBP: GBP,
    pub RUB: RUB,
}

#[derive(Deserialize, Debug)]
pub struct OpenOrderResult {
    pub id: String,
    pub time: String,
    pub r#type: String,
    pub price: String,
    pub amount: String,
    pub pending: String,
    pub symbol1: String,
    pub symbol2: String,
}

#[derive(Deserialize, Debug)]
pub struct CancelOrdersByPairResult {
    pub e: String,
    pub ok: String,
    pub data: Vec<String>,
}

#[derive(Deserialize, Debug)]
pub struct PlaceOrderResult {
    pub complete: bool,
    pub id: String,
    pub time: f64,
    pub pending: String,
    pub amount: String,
    pub r#type: String,
    pub price: String,
}

#[derive(Deserialize, Debug)]
pub struct GetOrderResult {
    pub id: String,
    pub r#type: String,
    pub time: i64,
    pub lastTxTime: String,
    pub lastTx: String,
    //  pub pos: null,
    pub user: String,
    pub status: String,
    pub symbol1: String,
    pub symbol2: String,
    pub amount: String,
    pub price: String,
    // #[serde(rename = "fa:USD")]
    // pub fa_USD: String,
    // #[serde(rename = "ta:USD")]
    // pub ta_USD: String,
    pub remains: String,
    // #[serde(rename = "a:BTC:cds")]
    // pub a_BTC_cds: String,
    // #[serde(rename = "a:USD:cds")]
    // pub a_USD_cds: String,
    // #[serde(rename = "f:USD:cds")]
    // pub f_USD_cds: String,
    pub tradingFeeMaker: String,
    pub tradingFeeTaker: String,
    pub tradingFeeStrategy: String,
    pub orderId: String,
}

#[derive(Deserialize, Debug)]
pub struct PlaceOrderResult2 {
    pub symbol2Amount: String,
    pub symbol1Amount: String,
    pub time: i64,
    pub message: String,
    pub r#type: String,
    pub id: String,
}

#[derive(Deserialize, Debug)]
pub struct GetOrderTxVtx {
    pub id: String,
    pub r#type: String,
    pub time: String,
    pub user: String,
    pub c: String,
    pub d: String,
    pub a: String,
    pub amount: String,
    pub balance: String,
    pub symbol: String,
    pub order: String,
    // pub buy: null,
    // pub sell: null,
    // pub pair: null,
    // pub pos: null,
    pub cs: String,
    // pub ds: String,
}

#[derive(Deserialize, Debug)]
pub struct GetOrderTxData {
    pub id: String,
    pub r#type: String,
    pub time: i64,
    // lastTxTime: String, // TODO API different
    pub lastTxTime: i64,
    pub lastTx: String,
    pub user: String,
    pub status: String,
    pub symbol1: String,
    pub symbol2: String,
    pub amount: String,
    pub price: String,
    // #[serde(rename = "fa:USD")]
    // fa_USD: String,
    // #[serde(rename = "ta:USD")]
    // ta_USD: String,
    pub remains: String,
    // #[serde(rename = "a:BTC:cds")]
    // a_BTC_cds: String,
    #[serde(rename = "a:USD:cds")]
    pub a_USD_cds: String,
    // #[serde(rename = "f:USD:cds")]
    // f_USD_cds: String,
    pub tradingFeeMaker: String,
    pub tradingFeeTaker: String,
    pub tradingFeeStrategy: String,
    pub orderId: String,
    pub vtx: Vec<GetOrderTxVtx>,
    pub next: bool,
    // pub prev: bool,
}

#[derive(Deserialize, Debug)]
pub struct GetOrderTxResult {
    pub e: String,
    pub ok: String,
    pub data: GetOrderTxData,
}

#[derive(Deserialize, Debug)]
pub struct ActiveOrderStatusResult {
    pub e: String,
    pub ok: String,
    pub data: Vec<[String; 3]>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct BTC_USD {
    pub buy: String,
    pub sell: String,
    pub buyMaker: String,
    pub sellMaker: String,
}

#[derive(Deserialize, Debug)]
pub struct DataMyfee {
    #[serde(rename = "BTC:USD")]
    pub BTC_USD: BTC_USD,
}

#[derive(Deserialize, Debug)]
pub struct GetMyfeeResult {
    pub e: String,
    pub ok: String,
    pub data: DataMyfee,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct GetAddressResult {
    pub ok: String,
    pub e: String,
    pub data: String,
}

#[derive(Deserialize, Debug)]
pub struct LongShort {
    #[serde(rename = "2")]
    _2: Vec<String>,
    #[serde(rename = "3")]
    _3: Vec<String>,
}

#[derive(Deserialize, Debug)]
struct BTCUSDMarginalFee {
    short: LongShort,
    long: LongShort,
}

#[derive(Deserialize, Debug)]
struct DataMarginalFee {
    #[serde(rename = "BTC:USD")]
    BTC_USD: BTCUSDMarginalFee,
}

#[derive(Deserialize, Debug)]
pub struct GetMarginalFeeResult {
    e: String,
    ok: String,
    data: DataMarginalFee,
}

#[derive(Deserialize, Debug)]
pub struct TradeHistoryResult {
    pub r#type: String,
    pub date: String,
    pub amount: String,
    pub price: String,
    pub tid: String,
}

#[derive(Deserialize, Debug)]
pub struct OhlcvResult {
    pub time: i32,
    pub data1m: String,
    pub data1h: String,
    pub data1d: String,
}

#[derive(Deserialize, Debug)]
pub struct OrderBookResult {
    pub timestamp: i64,
    pub bids: Vec<[f32; 2]>,
    pub asks: Vec<[f32; 2]>,
    pub pair: String,
    pub id: i64,
    pub sell_total: String,
    pub buy_total: String,
}

#[derive(Deserialize, Debug)]
pub struct PriceStatsResult {
    pub tmsp: i64,
    pub price: String,
}