Crates.io | bittrex-api |
lib.rs | bittrex-api |
version | 0.3.2 |
source | src |
created_at | 2017-08-08 04:44:23.135175 |
updated_at | 2017-08-10 19:28:13.038815 |
description | A wrapper for the bittrex api |
homepage | https://github.com/geaz/bittrex-api |
repository | https://github.com/geaz/bittrex-api/ |
max_upload_size | |
id | 26826 |
size | 72,942 |
bittrex-api provides a wrapper for the Bittrex API.
This crate makes it easy to consume the Bittrex API in Rust.
extern crate bittrex_api;
use bittrex_api::BittrexClient;
let bittrex_client = BittrexClient::new("KEY".to_string(), "SECRET".to_string()); // Initialize the Bittrex Client with your API Key and Secret
let markets = bittrex_client.get_markets().unwrap(); //Get all available markets of Bittrex
See the Documentation for more information about the various wrapper functions.