lbcd/rpcclient
2021-08-31 15:53:55 -04:00
..
examples [lbry] misc: change RPC port from 8334 to 9245 2021-08-19 14:19:20 -04:00
chain.go rpcclient: implement gettxoutsetinfo command 2020-10-05 10:03:47 -04: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 btcjson, rpclient: Fix typo 2020-03-04 09:23:11 -05:00
example_test.go rpcclient: implement createwallet with functional options 2020-10-26 14:54:05 -04:00
extensions.go multi: correct all import paths 2018-05-23 16:46:15 -07:00
infrastructure.go [lbry] rpcclient: allow any chain params not specified in repo already. 2021-08-19 14:19:21 -04:00
log.go Import btcrpcclient repo into rpcclient directory. 2017-08-15 19:51:58 -05:00
mining.go GetBlockTemplate RPC client implementation (#1629) 2020-09-21 09:42:35 -04:00
net.go rpcclient: fix documentation typo 2021-04-13 09:09:20 -04:00
notify.go [lbry] misc: rename btcd to lbcd 2021-08-19 14:17:22 -04:00
rawrequest.go Add Batch JSON-RPC support (rpc client & server) 2021-02-09 09:47:46 -05:00
rawtransactions.go [lbry] rpc: update defaultMaxFeeRate from 0.1 LBC to 0.5 LBC 2021-08-19 14:19:21 -04:00
README.md sanitizing readmes for lbcd 2021-08-31 15:53:55 -04:00
wallet.go rpcclient: fix documentation typos 2020-11-04 09:56:02 -05: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