An alternative full node implementation of LBRY's blockchain written in Go (golang)
Go to file
Rune T. Aune b81555beea Fix "Established connection" log message.
Don't log "Established connection" message on new when
DisableConnectOnNew is set and no connection was actually established.
Do log that same message when Connect() successfully connects.
2015-11-21 14:41:06 -06:00
examples Update example code. 2015-06-18 16:21:03 -04:00
.gitignore Initial commit. 2014-05-07 11:14:39 -05:00
.travis.yml Update Go versions for Travis. 2015-02-05 17:24:42 -05:00
chain.go Relicense to the btcsuite developers. 2015-05-01 12:03:51 -05:00
CONTRIBUTORS Update CONTRIBUTORS. 2014-06-02 09:50:03 -05:00
doc.go Relicense to the btcsuite developers. 2015-05-01 12:03:51 -05:00
extensions.go Review and fix. Mostly typos. 2015-09-20 11:42:49 +00:00
goclean.sh Add golint to TravisCI builds. 2015-04-05 23:00:36 -05:00
infrastructure.go Fix "Established connection" log message. 2015-11-21 14:41:06 -06:00
LICENSE Update license year to 2015. 2015-01-03 02:24:28 -06:00
log.go Relicense to the btcsuite developers. 2015-05-01 12:03:51 -05:00
mining.go Add Generate support in mining.go. 2015-05-05 16:52:53 -04:00
net.go Relicense to the btcsuite developers. 2015-05-01 12:03:51 -05:00
notify.go Add support for the session extension RPC. 2015-09-17 11:32:17 -04:00
rawrequest.go Relicense to the btcsuite developers. 2015-05-01 12:03:51 -05:00
rawtransactions.go add filteraddrs param to searchrawtransactions 2015-11-16 22:17:19 -08:00
README.md Update btcrpcclient import paths to new location. 2015-01-15 21:21:40 -06:00
wallet.go Make listsinceblock block hash optional. 2015-06-01 14:41:23 -04: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.