├── .gitignore ├── .gitmodules ├── .travis.yml ├── .travis └── travis_before_install.sh ├── LICENSE ├── README.md ├── contributing.md ├── lnd_grpc ├── __init__.py ├── base_client.py ├── config.py ├── invoices.py ├── lightning.py ├── lnd_grpc.py ├── protos │ ├── __init__.py │ ├── download_proto_files.py │ ├── generate_python_protos.md │ ├── invoices.proto │ ├── invoices_pb2.py │ ├── invoices_pb2_grpc.py │ ├── rpc.proto │ ├── rpc_pb2.py │ └── rpc_pb2_grpc.py ├── utilities.py └── wallet_unlocker.py ├── loop_rpc ├── __init__.py ├── loop_rpc.py └── protos │ ├── __init__.py │ ├── generate_python_loop_protos.txt │ ├── loop_client.proto │ ├── loop_client_pb2.py │ └── loop_client_pb2_grpc.py ├── requirements.txt ├── setup.py ├── test-requirements.txt └── tests ├── conftest.py ├── pytest.ini ├── test.md ├── test.py └── test_utils ├── __init__.py ├── btcproxy.py ├── fixtures.py ├── lnd.py ├── loop.py ├── test-tls.cert ├── test-tls.key └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/travis_before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/.travis/travis_before_install.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/contributing.md -------------------------------------------------------------------------------- /lnd_grpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/__init__.py -------------------------------------------------------------------------------- /lnd_grpc/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/base_client.py -------------------------------------------------------------------------------- /lnd_grpc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/config.py -------------------------------------------------------------------------------- /lnd_grpc/invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/invoices.py -------------------------------------------------------------------------------- /lnd_grpc/lightning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/lightning.py -------------------------------------------------------------------------------- /lnd_grpc/lnd_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/lnd_grpc.py -------------------------------------------------------------------------------- /lnd_grpc/protos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lnd_grpc/protos/download_proto_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/download_proto_files.py -------------------------------------------------------------------------------- /lnd_grpc/protos/generate_python_protos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/generate_python_protos.md -------------------------------------------------------------------------------- /lnd_grpc/protos/invoices.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/invoices.proto -------------------------------------------------------------------------------- /lnd_grpc/protos/invoices_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/invoices_pb2.py -------------------------------------------------------------------------------- /lnd_grpc/protos/invoices_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/invoices_pb2_grpc.py -------------------------------------------------------------------------------- /lnd_grpc/protos/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/rpc.proto -------------------------------------------------------------------------------- /lnd_grpc/protos/rpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/rpc_pb2.py -------------------------------------------------------------------------------- /lnd_grpc/protos/rpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/protos/rpc_pb2_grpc.py -------------------------------------------------------------------------------- /lnd_grpc/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/utilities.py -------------------------------------------------------------------------------- /lnd_grpc/wallet_unlocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/lnd_grpc/wallet_unlocker.py -------------------------------------------------------------------------------- /loop_rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/__init__.py -------------------------------------------------------------------------------- /loop_rpc/loop_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/loop_rpc.py -------------------------------------------------------------------------------- /loop_rpc/protos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loop_rpc/protos/generate_python_loop_protos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/protos/generate_python_loop_protos.txt -------------------------------------------------------------------------------- /loop_rpc/protos/loop_client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/protos/loop_client.proto -------------------------------------------------------------------------------- /loop_rpc/protos/loop_client_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/protos/loop_client_pb2.py -------------------------------------------------------------------------------- /loop_rpc/protos/loop_client_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/loop_rpc/protos/loop_client_pb2_grpc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test.md -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils/btcproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/btcproxy.py -------------------------------------------------------------------------------- /tests/test_utils/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/fixtures.py -------------------------------------------------------------------------------- /tests/test_utils/lnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/lnd.py -------------------------------------------------------------------------------- /tests/test_utils/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/loop.py -------------------------------------------------------------------------------- /tests/test_utils/test-tls.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/test-tls.cert -------------------------------------------------------------------------------- /tests/test_utils/test-tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/test-tls.key -------------------------------------------------------------------------------- /tests/test_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willcl-ark/lnd_grpc/HEAD/tests/test_utils/utils.py --------------------------------------------------------------------------------