kraken-http 0.1.0

Asynchronous HTTP API bindings for the Kraken cryptocurrency exchange.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use asset_pair::AssetPair;
pub use client::Client;
pub use endpoints::{
    endpoint, ACCOUNT_BALANCE, ASSET_INFO, ASSET_PAIRS, OPEN_ORDERS, RECENT_SPREADS, SYSTEM_STATUS,
    SYSTEM_TIME, TICKER, TRADE_BALANCE,
};
mod asset_pair;
mod client;
mod endpoints;
mod payload;
mod ratelimiter;
mod request_builder;
mod signature;