This is a library that provides access to the kraken.com APIs.
```rust use std::error::Error; use kraken_api::api::Kraken;
async fn main() -> Result<(), Box> { // code to get key, secret and totp goes here // ...... // ......
let kraken = Kraken::new(key, secret, totp); kraken.start().await?;
} ```