Skip to content

greenbigfrog/blockiocr

Repository files navigation

blockiocr

Crystal library to interact with block.io Currently requires a ruby interface to handle transaction signing. Attempt to do so in crystal at signing

Installation

Add this to your application's shard.yml:

dependencies:
  blockiocr:
    github: greenbigfrog/blockiocr

Dependencies

  • Ruby (for withdrawals)

Usage

require "blockiocr"

client = Blockio::Client.new(ENV["API_KEY"], ENV["PIN"])

puts client.get_balance

If you want to withdraw coins, you'll need to run rb/server.rb as well

Development

TODO: Write development instructions here

Contributing

  1. Fork it ( https://github.com/greenbigfrog/blockiocr/fork )
  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 a new Pull Request

Contributors