lbcd/rpcclient/examples/lbcdblocknotify
2022-01-04 09:59:47 -08:00
..
main.go [lbry] rpc: add a blocknotify example using lbcd websocket 2022-01-04 09:52:39 -08:00
README.md [lbry] rpc: update README.md for examples 2022-01-04 09:59:47 -08:00

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.