1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | use PhpLightning\Config\Backend\LnBitsBackendConfig; |
||
6 | use PhpLightning\Config\LightningConfig; |
||
7 | |||
8 | return (new LightningConfig()) |
||
9 | ->setDomain('your-domain.com') |
||
10 | ->setReceiver('custom-receiver') |
||
11 | ->setSendableRange(min: 100_000, max: 10_000_000_000) |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
12 | ->addBackend( |
||
13 | (new LnBitsBackendConfig()) |
||
14 | ->setApiEndpoint('http://localhost:5000') |
||
15 | ->setApiKey('api_key') |
||
16 | ); |
||
17 |