Crates.io | kraken_ws_client |
lib.rs | kraken_ws_client |
version | 0.26.0 |
source | src |
created_at | 2023-08-14 08:26:34.019835 |
updated_at | 2024-07-10 17:42:06.966462 |
description | A strongly-typed client for the Kraken WebSocket API |
homepage | |
repository | https://github.com/gmosx/kraken-sdk-rust/tree/main/kraken_client_ws |
max_upload_size | |
id | 943951 |
size | 88,599 |
A strongly-typed Rust SDK for the Kraken WebSocket API.
This crate is an unofficial, community-driven effort.
[dependencies]
kraken_ws_client = "0.24"
use futures::StreamExt;
use kraken_ws_client::api::SubscribeTickerRequest;
#[tokio::main]
async fn main() {
let mut client = kraken_ws_client::connect_public()
.await
.expect("cannot connect");
client
.send(SubscribeTickerRequest::symbol("BTC/USD"))
.await
.expect("cannot send request");
while let Some(event) = client.ticker_events().next().await {
dbg!(&event);
}
}
use kraken_rest_client::Client as RestClient;
let api_key = std::env::var("KRAKEN_API_KEY").expect("api key not defined");
let api_secret = std::env::var("KRAKEN_API_SECRET").expect("api secret not defined");
let rest_client = RestClient::new(api_key, api_secret);
let resp = rest_client.get_web_sockets_token().send().await?;
let token = resp.token;
let mut ws_private_client = kraken_ws_client::connect_private(token)
.await
.expect("cannot connect");
ws_private_client
.send(SubscribeExecutionsRequest::new())
.await
.expect("cannot send request");
while let Ok(msg) = ws_private_client.messages().recv().await {
dbg!(msg);
}
or run the example:
cargo run --example ticker
The software is under active development and the API is expected to change.
Pull requests, issues and comments are welcome! Make sure to add tests for new features and bug fixes.
This work is licensed under the Apache-2.0 License. See LICENSE.txt or https://spdx.org/licenses/Apache-2.0.html for details.
Copyright © 2022 Georgios Moschovitis.