lightningsale / lnd-client
A LND REST Client
v0.4.1
2018-03-05 07:05 UTC
Requires
- php: ^7.1
- guzzlehttp/guzzle: ^6.3
- psr/log: ^1.0
This package is not auto-updated.
Last update: 2024-10-27 04:02:52 UTC
README
TODO:
- Create a gRPC Client
- An Async Rest Client using Proxy Objects (http://ocramius.github.io/ProxyManager/)
- An Async gRPC client using Proxy Objects? (Or by default?)
How to use:
composer require lightningsale/lnd-client
<?php use LightningSale\LndClient\ClientFactory; use Psr\Log\NullLogger; require './vendor/autoload.php'; $rpcUsername = 'rpcusername'; $rpcPassword = 'rpcpassword'; $rpcHost = '127.0.0.1'; $rpcPort = '8080'; $tlsCert = '/root/.lnd/tls.cert'; $macaroon = '/root/.lnd/admin.macaroon'; $client = ClientFactory::createRestClient($rpcHost, $rpcPort, $tlsCert, $macaroon, new NullLogger()); var_dump($client->getInfo());
Example Symfony configuration:
# services.yml LightningSale\LndClient\Client: '@LightningSale\LndClient\RestClient' LightningSale\LndClient\RestClient: class: LightningSale\LndClient\RestClient factory: ['LightningSale\LndClient\ClientFactory','createRestClient'] arguments: ['127.0.0.1', '8080', '/root/.lnd/tls.cert', '/root/.lnd/admin.macaroon', '@logger']