Project

yobit

0.01
No commit activity in last 3 years
No release in over 3 years
yobit.net api wrapper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
~> 10.0

Runtime

 Project Readme

Yobit

I currently do not have a yobit.net account or api key (registration is currently disabled, so I cannot test any of the authenticated calls...

Gem Version

This gem provides a wrapper for the yobit.net api: yobit.net

Installation

Add this line to your application's Gemfile:

gem 'yobit'

And then execute:

$ bundle

Or install it yourself as:

$ gem install yobit

Usage

Setup your api key:

Yobit.setup do | config |
    config.key = 'my api key'
    config.secret = 'my api secret'
end

There is a class method for each api call, use underscores instead of camelcase.

Yobit.ticker
Yobit.get_info

Full list of supported methods, see yobit for usage.

info
ticker
depth
trades
get_info
trade
active_orders
order_info
cancel_order
trad_history
get_deposit_address
withdraw_coins_to_address

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request