kraken_api

Crates.iokraken_api
lib.rskraken_api
version0.1.5
sourcesrc
created_at2020-06-06 00:18:26.952536
updated_at2020-06-11 02:26:14.225154
descriptionkraken_api is a library for using both the public and private kraken.com APIs. It is currently a work in progress.
homepagehttps://git.cryptid.cc/lost/kraken_api
repositoryhttps://git.cryptid.cc/lost/kraken_api
max_upload_size
id250496
size18,914
Brandon (xa888s)

documentation

https://docs.rs/kraken_api

README

kraken_api

This is a library that provides access to the kraken.com APIs.

docs.rs

Usage

use std::error::Error;
use kraken_api::api::Kraken;

#[runtime::main]
async fn main() -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
    // code to get key, secret and totp goes here
    // ......
    // ......
    
    let kraken = Kraken::new(key, secret, totp);

    kraken.start().await?;
}
Commit count: 0

cargo fmt