A strongly-typed Rust client for the Kraken REST API.
[dependencies]
kraken_client = "0.10.0"
```rust let client = Client::new( "YOUR-API-KEY", "YOUR_API-SECRET", );
let resp = client.getservertime().send().await?;
println!("{}", resp.unixtime);
let pair = PairName::from("XBT", "USD"); let resp = client .getohlcdata(&pair) .interval(Interval::Day1) .send() .await;
println!("{:?}", resp);
let pair = "XXRPZUSD"; let resp = client .addlimitorder(pair, OrderSide::Buy, "20", "0.10") .expireafter(60 * 60) .userref(123) .validateonly() .send() .await?;
println!("{:?}", resp);
let resp = client.cancel_order("O6CIT1-NABRS-TMVZ1X").send().await?;
println!("{}", resp.count); ```
The software is under active development and the API is expected to change.
It's not ready for production use.
Pull requests, issues and comments are welcome! Make sure to add tests for new features and bug fixes.
For questions, suggestions, etc, you can reach the maintainer on Twitter.
The software is distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Copyright (c) 2021 George Moschovitis.