polyester-sdk 0.1.0-alpha.28

Official Rust SDK for Polyester APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use polyester::types::{Quantity, QuantityDomain};

#[allow(unreachable_code)]
fn main() {
    let _ = Quantity {
        scaled: loop {},
        scale: Some(8),
        domain: QuantityDomain::OrderBase,
        symbol: Some("BTC-USDT".into()),
        symbol_id: Some(7),
    };
}