Coinbase Client for Rust

This is a Rust client for interacting with the Coinbase API. It works with version 2019-04-03 (v2) of the API. This is not compatible with the Coinbase Pro API.

Features

Examples

Cargo.toml:

toml [dependencies] coinbase-rs = "0.1.0"

Public API (Sync)

```rust use coinbasers::{Public, Sync, MAINURL};

fn main() { let client: Public = Public::new(MAIN_URL);

for currency in client.currencies().unwrap() {
    println!(
        "Currency {} mininum size = {}",
        currency.name, currency.min_size
    );
}

} ```

Private API (Sync)

```rust use coinbasers::{Private, Sync, MAINURL}; use std::str::FromStr; use uuid::Uuid;

pub const KEY: &str = ""; pub const SECRET: &str = "";

fn main() { let client: Private = Private::new(MAIN_URL, KEY, SECRET);

let accounts = client.accounts().unwrap();
for account in accounts {
    println!("Account {}", account.currency.code);
    if let Ok(id) = Uuid::from_str(&account.id) {
        for transaction in client.list_transactions(&id).unwrap() {
            println!(
                "Transaction {} = {}",
                transaction.id, transaction.amount.amount
            );
        }
    }
}

} ```

Thanks

This project is inspired and borrows heavily from coinbase-pro-rs.