Bitcoinrb is a Ruby implementation of Bitcoin Protocol.
NOTE: Bitcoinrb work in progress, and there is a possibility of incompatible change.
Bitcoinrb supports following feature:
Bitcoin::BIP85Entropy
class.If you use node features, please install level DB as follows.
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'
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'
Examples can be found on the wiki.
The parameters of the blockchain are managed by Bitcoin::ChainParams
. Switch chain parameters as follows:
Bitcoin.chain_params = :mainnet
This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/mainnet.yml.
Bitcoin.chain_params = :testnet
This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/testnet.yml.
Bitcoin.chain_params = :regtest
This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/regtest.yml.
Bitcoin.chain_params = :signet
This parameter is described in https://github.com/chaintope/bitcoinrb/blob/master/lib/bitcoin/chainparams/signet.yml.
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
.
In case the supplied linux spec/lib/libsecp256k1.so
is not working (architecture), you might have to compile it yourself.
Since if available in the repository, it might not be compiled using the ./configure --enable-module-recovery
option.
Then TEST_LIBSECP256K1_PATH=/path/to/secp256k1/.libs/libsecp256k1.so rspec
can be used.
The libsecp256k1 library currently tested for operation with this library is v0.4.0
.
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.
The gem is available as open source under the terms of the MIT License.