mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-11 00:26:44 +00:00

* [NOD-494] Updated main README.md * [NOD-494] Updated blockdag/README.md * [NOD-494] Aligned text length in main README.md * [NOD-494] Updated most remaining packages READMEs + deleted util/coinset * [NOD-494] Update integration README * [NOD-494] Did a final pass over all readmes * [NOD-494] Updated README for DNSSeeder with more info on how to create a functioning setup * [NOD-494] Remove all double spaces from readmes * [NOD-494] Minor fixes in READMEs + update license to kaspanet developers * [NOD-494] Add backtick around ecc and util in hdkeychain README
25 lines
674 B
Markdown
25 lines
674 B
Markdown
Websockets Example
|
|
=======================
|
|
|
|
This example shows how to use the rpcclient package to connect to an RPC
|
|
server using TLS-secured websockets, register for block connected and block
|
|
disconnected notifications, and get the current block count.
|
|
|
|
This example also sets a timer to shutdown the client after 10 seconds to
|
|
demonstrate clean shutdown.
|
|
|
|
Modify the `main.go` source to specify the correct RPC username and
|
|
password for the RPC server:
|
|
|
|
```Go
|
|
User: "yourrpcuser",
|
|
Pass: "yourrpcpass",
|
|
```
|
|
|
|
Finally, navigate to the example's directory and run it with:
|
|
|
|
```bash
|
|
$ cd $GOPATH/src/github.com/kaspanet/kaspad/rpcclient/examples/websockets
|
|
$ go run *.go
|
|
```
|