kraken_client 0.13.0

A strongly-typed client for the Kraken REST API
Documentation
// region: public

pub mod get_server_time;
pub use get_server_time::*;

pub mod get_system_status;
pub use get_system_status::*;

pub mod get_assets;
pub use get_assets::*;

pub mod get_asset_pairs;
pub use get_asset_pairs::*;

pub mod get_tickers;
pub use get_tickers::*;

pub mod get_ohlc_data;
pub use get_ohlc_data::*;

pub mod get_order_book;
pub use get_order_book::*;

// endregion: public

// region: private

pub mod get_account_balance;
pub use get_account_balance::*;

pub mod get_open_orders;
pub use get_open_orders::*;

pub mod get_closed_orders;
pub use get_closed_orders::*;

pub mod get_trades_history;
pub use get_trades_history::*;

pub mod add_order;
pub use add_order::*;

pub mod cancel_order;
pub use cancel_order::*;

// endregion: private