751 B
751 B
lbcd Websockets Example
This example shows how to use the rpcclient package to connect to a btcd RPC server using TLS-secured websockets, register for block connected and block disconnected notifications, and get the current block count.
Running the Example
The first step is to clone the lbcd package:
$ git clone github.com/lbryio/lbcd
Next, navigate to the example's directory and modify the main.go
source to
specify the correct RPC username and password for the RPC server:
$ cd rpcclient/examples/lbcdblocknotify
User: "yourrpcuser",
Pass: "yourrpcpass",
Finally, run it with:
$ go run .
License
This example is licensed under the copyfree ISC License.