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.
Cargo.toml:
toml
[dependencies]
coinbase-rs = "0.1.0"
```rust use coinbasers::{Public, Sync, MAINURL};
fn main() {
let client: Public
for currency in client.currencies().unwrap() {
println!(
"Currency {} mininum size = {}",
currency.name, currency.min_size
);
}
} ```
```rust use coinbasers::{Private, Sync, MAINURL}; use std::str::FromStr; use uuid::Uuid;
pub const KEY: &str = "
fn main() {
let client: Private
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
);
}
}
}
} ```
This project is inspired and borrows heavily from coinbase-pro-rs.