The Lightning Network Faucet is a faucet that is currently deployed on the Decred testnet. The following faucets are currently available:
The Testnet Lightning Faucet (TLF) is similar to other existing Decred faucets. However, rather then sending dcr directly on-chain to a user of the faucet, the TLF will instead open a payment channel with the target user. The user can then either use their new link to the Lightning Network to facilitate payments, or immediately close the channel (which immediately credits them on-chain like regular faucets).
Currently the TLF is only compatible with dcrlnd
.
In order to build from source, the following build dependencies are required:
- Go: Installation instructions can be found here.
Minimum Go version supported is 1.11. This project uses go modules, so either compile it with GO111MODULES=on or outside of the $GOPATH.
With the preliminary steps completed, to install the Testnet Lightning Faucet
$ git clone https://github.com/decred/lightning-faucet src/github.com/decred/lightning-faucet
$ cd src/github.com/decred/lightning-faucet
$ go install -v
Once you have the faucet installed, you'll need to ensure you have a local
dcrlnd
active and fully synced.
Once the node is synced, execute the following command (from this directory) to deploy the faucet:
lightning-faucet --lnd_node=X.X.X.X:10009
Where X.X.X.X:10009
is the IP address and port for your active dcrlnd
node.
To enable HTTPS support via Let's Encrypt, specify a few additional options:
lightning-faucet --lnd_node=X.X.X.X:10009 --use_le_https --domain my-faucet-domain.example.com