pool/poolrpc/README.md

18 lines
846 B
Markdown
Raw Normal View History

2020-09-09 17:44:00 -07:00
# poolrpc
2020-06-05 16:38:10 +02:00
2020-09-09 17:44:00 -07:00
This poolrpc package implements both a client (trader) and server (auctioneer)
RPC system which is based off of the high-performance cross-platform
[gRPC](http://www.grpc.io/) RPC framework. By default, only the Go
client+server libraries are compiled within the package. In order to compile
2020-06-05 16:38:10 +02:00
the client side libraries for other supported languages, the `protoc` tool will
need to be used to generate the compiled protos for a specific language.
2020-09-09 17:44:00 -07:00
For a list of supported languages for `poolrpc`, see
2020-06-05 16:38:10 +02:00
[grpc.io/docs/languages](https://grpc.io/docs/languages/).
## Generate protobuf definitions
Make sure you have the exact versions of all libraries installed as described
in [the lnrpc/README.md of lnd](https://github.com/lightningnetwork/lnd/blob/master/lnrpc/README.md#generate-protobuf-definitions)
then run the `make rpc` command.