Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

block_io

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

block_io

  • 3.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

BlockIo

This Ruby Gem is the official reference client for the Block.io's infrastructure APIs. To use this, you will need the Dogecoin, Bitcoin, or Litecoin API key(s) from Block.io. Go ahead, sign up :)

Installation

Add this line to your application's Gemfile:

gem "block_io"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install block_io

Changelog

10/28/22: Version 3.1.0 uses Typhoeus instead of httprb. If using proxy, :url must be provided instead of previous :hostname and :port.
05/30/22: Version 3.0.5 fixes Litecoin P2SH address version (properly now).
12/26/21: Version 3.0.4 drops support for EOL Ruby 2.4, 2.5. Supports Ruby 3.1.
09/28/21: Version 3.0.3 supports witness_v1 outputs (Bech32m).
07/21/21: Version 3.0.2 fixes Litecoin P2SH address version.
06/09/21: Version 3.0.1 implements use of dynamic decryption algorithms.
04/14/21: BREAKING CHANGES. Version 3.0.0. Remove support for Ruby < 2.4.0, and Windows. Behavior and interfaces have changed. By upgrading you'll need to revise your code and tests.

Important Notes

  • This gem depends on the bitcoinrb gem. By using this gem, your application will load the bitcoinrb gem as well with the Bitcoin namespace. It may conflict with another gem using the same namespace.
  • Transaction endpoints are updated as of v3.0.0.
  • See the examples/ folder for basic examples.
  • Be careful to test thoroughly before production.
  • Use of this software is subject to its LICENSE.

Usage

It's super easy to get started. In your Ruby shell ($ irb), for example, do this:

require 'block_io'
blockio = BlockIo::Client.new(:api_key => "API KEY", :pin => "SECRET PIN")    

If you do not have your PIN, or just wish to use your private key backup(s) directly, do this instead:

blockio = BlockIo::Client.new(:api_key => "API KEY")
blockio.get_balance
blockio.prepare_transaction(..., :keys => [BlockIo::Key.from_wif("PRIVATE_KEY_BACKUP_IN_WIF").private_key_hex])    

And you're good to go:

blockio.get_new_address
blockio.get_my_addresses

For other initialization options/parameters, see lib/block_io/client.rb.
For more information, see https://block.io/api/simple/ruby.

Contributing

  1. Fork it ( https://github.com/BlockIo/gem-block-io/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

FAQs

Package last updated on 29 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc