Coinbase-api

Client library for the Coinbase Pro API. Requests are asynchronous and return futures.

Coinbase API reference

Example

Basic example to list all currency pairs trading on the exchange:

```rust extern crate coinbase_api; extern crate hyper;

use coinbase_api::*; use hyper::rt::Future;

fn makefuture() -> impl Futureerr(|err| println!("Error: {:?}", err)) }

fn main() { hyper::rt::run(make_future()); } ```

Progress

Implemented

Not implemented yet