An alternative full node implementation of LBRY's blockchain written in Go (golang)
Find a file
Dave Collins 6af13826ae Convert {Dump,Import}PrivKey to use new WIF type.
The btcutil package recently exposed a WIF type to provide more
functionality and simplify working with WIF strings.  This commit changes
the DumpPrivKey and ImportPrivKey RPCs to use the new WIF type.
2014-05-21 20:00:11 -05:00
examples Correct typo in example log statement. 2014-05-11 13:30:25 -05:00
.gitignore Initial commit. 2014-05-07 11:14:39 -05:00
.travis.yml Add support for TravisCI. 2014-05-09 01:16:47 -05:00
chain.go Make nil pointer handling consistent across RPCs. 2014-05-21 19:53:46 -05:00
CONTRIBUTORS Add CONTRIBUTORS file. 2014-05-07 11:23:16 -05:00
doc.go Improve overview in doc.go. 2014-05-10 02:50:19 -05:00
extensions.go Correct FutureGetBestBlockResult.Receive type. 2014-05-11 02:35:07 -05:00
infrastructure.go Auto recreate notification state on reconnect. 2014-05-10 02:15:09 -05:00
LICENSE Initial commit. 2014-05-07 11:14:39 -05:00
log.go Initial commit. 2014-05-07 11:14:39 -05:00
mining.go Make nil pointer handling consistent across RPCs. 2014-05-21 19:53:46 -05:00
net.go Make btcrpcclient use the new and consistent reply types. 2014-05-07 11:23:00 -05:00
notify.go Auto recreate notification state on reconnect. 2014-05-10 02:15:09 -05:00
rawtransactions.go Make nil pointer handling consistent across RPCs. 2014-05-21 19:53:46 -05:00
README.md Fix a couple of typos in README.md. 2014-05-10 15:48:14 -05:00
wallet.go Convert {Dump,Import}PrivKey to use new WIF type. 2014-05-21 20:00:11 -05:00

btcrpcclient

[Build Status] (https://travis-ci.org/conformal/btcrpcclient) [GoDoc] (http://godoc.org/github.com/conformal/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
  • 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/conformal/btcrpcclient

License

Package btcrpcclient is licensed under the copyfree ISC License.