How to connect to bitcoind from ruby rpc client?

2

1

I have started bitcoind. It is working fine but how can I connect to it from rails on localhost?

sss

Posted 2017-08-21T12:11:51.397

Reputation: 21

Answers

2

you will communicate over RPC/JSON

There is an example in the official doc :

require 'net/http'
require 'uri'
require 'json'

class BitcoinRPC
  def initialize(service_url)
    @uri = URI.parse(service_url)
  end

  def method_missing(name, *args)
    post_body = { 'method' => name, 'params' => args, 'id' => 'jsonrpc' }.to_json
    resp = JSON.parse( http_post_request(post_body) )
    raise JSONRPCError, resp['error'] if resp['error']
    resp['result']
  end

  def http_post_request(post_body)
    http    = Net::HTTP.new(@uri.host, @uri.port)
    request = Net::HTTP::Post.new(@uri.request_uri)
    request.basic_auth @uri.user, @uri.password
    request.content_type = 'application/json'
    request.body = post_body
    http.request(request).body
  end

  class JSONRPCError < RuntimeError; end
end

if $0 == __FILE__
  h = BitcoinRPC.new('http://user:password@127.0.0.1:8332')
  p h.getbalance
  p h.getinfo
  p h.getnewaddress
  p h.dumpprivkey( h.getnewaddress )
  # also see: https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list
end

Badr Bellaj

Posted 2017-08-21T12:11:51.397

Reputation: 862

Then please accept the answerBadr Bellaj 2017-08-22T12:21:41.447

This answer helped me. People who asked questions and leave after they get it without any acknowledgement are whats wrong with this world.Arun Satyarth 2018-04-27T05:53:49.007