An alternative full node implementation of LBRY's blockchain written in Go (golang)
Go to file
2015-01-17 00:30:49 -06:00
examples Update btcwire import paths to new location. 2015-01-16 15:28:53 -06:00
.gitignore Initial commit. 2014-05-07 11:14:39 -05:00
.travis.yml Update TravisCI to goclean script. 2015-01-15 20:58:39 -06:00
chain.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
CONTRIBUTORS Update CONTRIBUTORS. 2014-06-02 09:50:03 -05:00
doc.go Update btcwallet import paths to new location. 2015-01-17 00:30:49 -06:00
extensions.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
goclean.sh Update TravisCI to goclean script. 2015-01-15 20:58:39 -06:00
infrastructure.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
LICENSE Update license year to 2015. 2015-01-03 02:24:28 -06:00
log.go Update btclog import paths to new location. 2015-01-16 13:08:45 -06:00
mining.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
net.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
notify.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
rawrequest.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
rawtransactions.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00
README.md Update btcrpcclient import paths to new location. 2015-01-15 21:21:40 -06:00
wallet.go Update btcjson import paths to new location. 2015-01-16 23:56:08 -06:00

btcrpcclient

[Build Status] (https://travis-ci.org/btcsuite/btcrpcclient) [GoDoc] (http://godoc.org/github.com/btcsuite/btcrpcclient)

btcrpcclient implements a Websocket-enabled Bitcoin JSON-RPC client package written in Go. It provides a robust and easy to use client for interfacing with a Bitcoin RPC server that uses a btcd/bitcoin core compatible Bitcoin JSON-RPC API.

Status

This package is currently under active development. It is already stable and the infrastructure is complete. However, there are still several RPCs left to implement and the API is not stable yet.

Documentation

  • API Reference
  • btcd Websockets Example
    Connects to a btcd RPC server using TLS-secured websockets, registers for block connected and block disconnected notifications, and gets the current block count
  • btcwallet Websockets Example
    Connects to a btcwallet RPC server using TLS-secured websockets, registers for notifications about changes to account balances, and gets a list of unspent transaction outputs (utxos) the wallet can sign
  • Bitcoin Core HTTP POST Example
    Connects to a bitcoin core RPC server using HTTP POST mode with TLS disabled and gets the current block count

Major Features

  • Supports Websockets (btcd/btcwallet) and HTTP POST mode (bitcoin core)
  • Provides callback and registration functions for btcd/btcwallet notifications
  • Supports btcd extensions
  • Translates to and from higher-level and easier to use Go types
  • Offers a synchronous (blocking) and asynchronous API
  • When running in Websockets mode (the default):
    • Automatic reconnect handling (can be disabled)
    • Outstanding commands are automatically reissued
    • Registered notifications are automatically reregistered
    • Back-off support on reconnect attempts

Installation

$ go get github.com/btcsuite/btcrpcclient

License

Package btcrpcclient is licensed under the copyfree ISC License.