bitcoin_rpc v1.0.1

Bitcoin RPC client for Crystal

BitcoinRpc

Simple Crystal library for Bitcoin's RPC API.

All calls get proxied by a method_missing macro, so they have exactly the same names and arguments as specified in the official documentation.

Installation

Add this to your application's shard.yml:

dependencies:
  bitcoin_rpc:
    github: citizen428/bitcoin_rpc

Usage

Usage is very simple:

require "bitcoin_rpc"

# Testnet example
rpc = BitcoinRpc.new("http://localhost:18332", "username", "password")

rpc.getblockhash(0)
# or
rpc.get_block_hash(0)
#=> "000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"

rpc.getblockcount
#or 
rpc.get_block_count
#=> 486259

rpc.listaccounts
# or
rpc.list_accounts
#=> {"" => 0.0}

Releases

v1.0.1

  • Fix crystal requirement

v1.0.0

  • change crystal version requirement to *

v0.5.0

  • Include JSON body when raising on unseccessfull RPC request

v0.4.1

  • Fix error raising logic

v0.4.0

  • Raise error if none Success HTTP status code

v0.3.1

  • Now raising with actual error message

v0.2.1

  • Close HTTP Client, causing issues when called with higher rate

v0.2.0

  • BitcoinRpc is finally thread safe (was unaware that client.post wasn't concurrrent)

Contributing

  1. Fork it ( https://github.com/citizen428/bitcoin_rpc/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

Repository

bitcoin_rpc

Owner
Statistic
  • 2
  • 3
  • 0
  • 0
  • 0
  • over 2 years ago
  • September 16, 2017
License

MIT License

Links
Synced at

Sat, 18 May 2024 11:25:15 GMT

Languages