lbcd/rpcclient
2022-10-31 00:23:46 -07:00
..
examples lbcdblocknotify: reorganize the code with a few updates 2022-10-17 00:03:13 -07:00
chain.go [lbry] rpc: add GetChainTips rpc command 2022-05-24 00:01:45 -07:00
chain_test.go btcjson+rpcclient: support new unified softfork bitcoind format 2019-11-05 16:28:33 -08:00
CONTRIBUTORS Import btcrpcclient repo into rpcclient directory. 2017-08-15 19:51:58 -05:00
cookiefile.go rpcclient: Read first line of cookie instead of trimming space 2020-06-08 09:51:09 -04:00
doc.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
example_test.go [lbry] align port settings between lbcd, lbcctl, and lbcwallet 2022-05-24 00:01:46 -07:00
extensions.go ci: gofmt with go 1.19 2022-08-07 23:40:53 -07:00
infrastructure.go error properly when lbcd fails to connect in HTTP POST mode 2022-10-14 11:40:46 -07:00
log.go Import btcrpcclient repo into rpcclient directory. 2017-08-15 19:51:58 -05:00
mining.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
net.go rpc: implement setban, lisnbanned, clearbanned RPCs 2022-08-14 21:26:27 -07:00
notify.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
rawrequest.go [lbry] rename btcd to lbcd 2022-05-23 23:53:30 -07:00
rawtransactions.go rpc: support hex data output for createrawtransaction 2022-09-14 18:41:04 -07:00
README.md [lbry] docs: update docs for LBRY 2022-05-24 00:01:46 -07:00
wallet.go rpcclient: update rescanblockchain support 2022-10-31 00:23:46 -07:00

rpcclient

ISC License

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 lbcd/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.

Major Features

  • Supports Websockets (lbcd/lbcwallet) and HTTP POST mode (bitcoin core)
  • Provides callback and registration functions for lbcd/lbcwallet notifications
  • Supports lbcd 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