Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanascz/lnurld
LNURL Daemon
https://github.com/yanascz/lnurld
bitcoin http-server lightning-network lnurl-auth lnurl-pay lnurl-withdraw nostr raffle zapper
Last synced: about 1 month ago
JSON representation
LNURL Daemon
- Host: GitHub
- URL: https://github.com/yanascz/lnurld
- Owner: yanascz
- License: mit
- Created: 2022-11-06T17:09:47.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T19:04:16.000Z (about 1 month ago)
- Last Synced: 2024-11-13T19:23:57.444Z (about 1 month ago)
- Topics: bitcoin, http-server, lightning-network, lnurl-auth, lnurl-pay, lnurl-withdraw, nostr, raffle, zapper
- Language: Go
- Homepage:
- Size: 289 KB
- Stars: 17
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bitcoin-payment-processors - LNURL Daemon
README
# LNURL Daemon
LNURL Daemon is a minimalistic [Lightning Address](https://lightningaddress.com/) and LNURL self-hosted HTTP server.
It is intended to run on your node and connect directly to your [LND](https://github.com/lightningnetwork/lnd).
You may test it by sending some sats to ⚡[email protected] or by scanning the following QR code:![LNURL-pay QR code](https://yanas.cz/ln/pay/lnurld/qr-code)
## Supported features
* [LUD-01: Base LNURL encoding](https://github.com/fiatjaf/lnurl-rfc/blob/luds/01.md)
* [LUD-03: `withdrawRequest` base spec](https://github.com/fiatjaf/lnurl-rfc/blob/luds/03.md)
* [LUD-04: `auth` base spec](https://github.com/fiatjaf/lnurl-rfc/blob/luds/04.md)
* [LUD-06: `payRequest` base spec](https://github.com/fiatjaf/lnurl-rfc/blob/luds/06.md)
* [LUD-09: `successAction` field for `payRequest`](https://github.com/fiatjaf/lnurl-rfc/blob/luds/09.md)
* [LUD-12: Comments in `payRequest`](https://github.com/fiatjaf/lnurl-rfc/blob/luds/12.md)
* [LUD-16: Paying to static internet identifiers](https://github.com/fiatjaf/lnurl-rfc/blob/luds/16.md)
* [NIP-57: Lightning Zaps](https://github.com/nostr-protocol/nips/blob/master/57.md)
* Multiple customizable accounts
* Lightning Network terminal
* Lightning Network raffle
* Events with LNURL-auth sign-up## Installation
LND is expected to run on the same machine and user `bitcoin` is assumed.
You also need [Go installed](https://go.dev/doc/install).### Build from source
```shell
$ git clone https://github.com/yanascz/lnurld.git
$ cd lnurld
$ go install
$ go build
```### Create config file
```shell
$ sudo mkdir /etc/lnurld
$ sudo cp config.yaml /etc/lnurld
$ sudo sed -i s/S3cr3t/$(openssl rand -base64 12 | tr / -)/ /etc/lnurld/config.yaml
```**Make sure to review the config file before running `lnurld` in production!**
(Create image `satoshi.png` in `/etc/lnurld/thumbnails` if you want it served by `lnurld`.)
### Create data directory
```shell
$ sudo mkdir /var/lib/lnurld
$ sudo chown bitcoin:bitcoin /var/lib/lnurld
```Account, event and raffle data will be stored there.
### Run the server
```shell
$ ./lnurld
```Alternatively with a custom config file path:
```shell
$ ./lnurld --config=/home/satoshi/.lnurld/cfg.yaml
```Don’t forget to stop the server before setting up systemd service!
### Setup systemd service
```shell
$ sudo cp lnurld /usr/local/bin
$ sudo cp systemd/lnurld.service /etc/systemd/system
$ sudo systemctl start lnurld.service
$ sudo systemctl enable lnurld.service
```Now the service should be up and running, listening on configured host and port.
### Setup reverse proxy
Example [nginx](https://nginx.org) configuration for domain `nakamoto.example` (replace with your own) with
[Let’s Encrypt](https://letsencrypt.org) SSL certificate:```
http {
#
# general configuration omitted
#upstream lnurld {
server 127.0.0.1:8088;
}server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name nakamoto.example;ssl_certificate "/etc/letsencrypt/live/nakamoto.example/fullchain.pem";
ssl_certificate_key "/etc/letsencrypt/live/nakamoto.example/privkey.pem";
ssl_session_cache shared:lnurld:1m;proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;location / {
proxy_pass http://lnurld;
}
}
}
```If you don’t have an SSL certificate, you can get one using [Certbot](https://certbot.eff.org).
## Usage
Once configured and deployed, you shall be able to send sats to ⚡[email protected] from your LN wallet.
If you need to display a QR code, simply navigate to or share https://nakamoto.example/ln/pay/satoshi/qr-code.
For a smaller/larger QR code, feel free to append desired size in pixels to the URL, e.g `?size=1024`. This pattern
applies to any configured account.To see accessible accounts and to manage events/raffles, navigate to https://nakamoto.example/auth. You’ll need
to authenticate using one of the configured username/password pairs. Account stats, QR code and/or payment terminal
are accessible from the account’s detail page in the Accounts section at https://nakamoto.example/auth/accounts.Events may be managed in the Events section at https://nakamoto.example/auth/events. Each created event may be shared
with your friends, and they may sign up to attend the event once they authenticate using their LN wallet.Raffles may be managed in the Raffles section at https://nakamoto.example/auth/raffles. Raffle QR code may be shared
to allow anyone to purchase as many raffle tickets as they wish, increasing their chances. Once enough tickets are sold,
i.e. at least the same number as there are prizes, you may start drawing winning tickets from the raffle’s detail page.Once a raffle is drawn, received sats may be withdrawn to any LN wallet that supports LNURL-withdraw. However, you have
to first configure path to a macaroon with `invoices:read invoices:write offchain:read offchain:write` permissions.## Update
```shell
$ cd lnurld
$ git pull
$ ./systemd/deploy.sh
```Alternatively checkout a specific branch/tag.
When updating from revision `4da3fcf` or earlier, run this account migration in your data directory:
```shell
$ for f in *.csv*; do d=accounts/${f%.csv*}; sudo -u bitcoin mkdir -p $d; sudo mv $f $d/invoices.csv${f#*.csv}; done
```When updating from revision `ec77e80` or earlier, run this event migration in your data directory:
```shell
$ sudo sed -e 's/"dateTime":\("[^"]*"\)/"start":\1,"end":\1/' -i events/*/data.json
```Then you might want to update end dates of your events via the admin user interface.