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
//! Types shared across the client and protocol requests

pub mod blockchain;
pub mod exchange;
pub mod keys;
pub mod market_pair;

pub use blockchain::{eth, neo, AssetOrCrosschain, Prefix, PublicKey};
pub use self::exchange::{
    AccountTradeSide,
    Amount,
    Asset,
    AssetAmount,
    AssetofPrecision,
    Blockchain,
    BuyOrSell,
    Candle,
    CandleInterval,
    DateTimeRange,
    Market,
    Nonce,
    Order,
    OrderCancellationPolicy,
    OrderCancellationReason,
    OrderRate,
    OrderStatus,
    OrderType,
    OrderbookOrder,
    Rate,
    Trade,
};
pub use keys::ApiKeys;