rpcclient 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 bchd/bitcoin core compatible Bitcoin JSON-RPC API.
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.
- API Reference
- bchd Websockets Example Connects to a bchd RPC server using TLS-secured websockets, registers for block connected and block disconnected notifications, and gets the current block count
- bchwallet Websockets Example Connects to a bchwallet 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
- Supports Websockets (bchd/bchwallet) and HTTP POST mode (bitcoin core)
- Provides callback and registration functions for bchd/bchwallet notifications
- Supports bchd 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
$ go get -u github.com/gcash/bchd/rpcclient
Package rpcclient is licensed under the copyfree ISC License.