Project

bitcoinrb

0.04
A long-lived project that still receives updates
The implementation of Bitcoin Protocol for Ruby.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 12.3.3
~> 3.0
>= 3.11.1
>= 1.20.1

Runtime

 Project Readme

Bitcoinrb Build Status Gem Version MIT License

Bitcoinrb is a Ruby implementation of Bitcoin Protocol.

NOTE: Bitcoinrb work in progress, and there is a possibility of incompatible change.

Features

Bitcoinrb supports following feature:

Requirements

use Node implementation

If you use node features, please install level DB as follows.

install LevelDB

  • for Ubuntu

    $ sudo apt-get install libleveldb-dev

  • for Mac

    $ brew install leveldb

and put leveldb-native in your Gemfile and run bundle install.

gem 'leveldb-native'

Installation

Add this line to your application's Gemfile:

gem 'bitcoinrb', require: 'bitcoin'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bitcoinrb

And then add to your .rb file:

require 'bitcoin'

Usage

Examples can be found on the wiki.

Chain selection

The parameters of the blockchain are managed by Bitcoin::ChainParams. Switch chain parameters as follows:

  • mainnet
Bitcoin.chain_params = :mainnet

This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/mainnet.yml.

  • testnet
Bitcoin.chain_params = :testnet

This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/testnet.yml.

  • regtest
Bitcoin.chain_params = :regtest

This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/regtest.yml.

  • default signet
Bitcoin.chain_params = :signet

This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/signet.yml.

Test

This library can use the libsecp256k1 dynamic library. Therefore, some tests require this library. In a Linux environment, spec/lib/libsecp256k1.so is already located, so there is no need to do anything. If you want to test in another environment, please set the library path in the environment variable TEST_LIBSECP256K1_PATH.

The libsecp256k1 library currently tested for operation with this library is v0.4.0.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/bitcoinrb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.