mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
ac24c310c5
* Add Versioner rpc, use versioner for LND get_version, refactor macaroon * Move LND specific rpc calls from the follow-invoices thread to LNNode * Move LND specific rpc calls from tasks to LNNode
31 lines
1.5 KiB
Bash
Executable File
31 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# generate grpc definitions
|
|
cd api/lightning
|
|
[ -d googleapis ] || git clone https://github.com/googleapis/googleapis.git googleapis
|
|
|
|
# LND Lightning proto
|
|
curl -o lightning.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/lightning.proto
|
|
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. lightning.proto
|
|
|
|
# LND Invoices proto
|
|
curl -o invoices.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/invoicesrpc/invoices.proto
|
|
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. invoices.proto
|
|
|
|
# LND Router proto
|
|
curl -o router.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/routerrpc/router.proto
|
|
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. router.proto
|
|
|
|
# LND Versioner proto
|
|
curl -o verrpc.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/verrpc/verrpc.proto
|
|
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. verrpc.proto
|
|
|
|
# patch generated files relative imports
|
|
sed -i 's/^import .*_pb2 as/from . \0/' router_pb2.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' invoices_pb2.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' verrpc_pb2.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' router_pb2_grpc.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' lightning_pb2_grpc.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' invoices_pb2_grpc.py
|
|
sed -i 's/^import .*_pb2 as/from . \0/' verrpc_pb2_grpc.py
|