- - Use an LNURL compatible bitcoin wallet to pay. -
-- LNURL is a range of lightning-network standards that allow - us to use lightning-network differently. An LNURL-pay is a - link that wallets use to fetch an invoice from a server - on-demand. The link or QR code is fixed, but each time it is - read by a compatible wallet a new QR code is issued by the - service. It can be used to activate machines without them - having to maintain an electronic screen to generate and show - invoices locally, or to sell any predefined good or service - automatically. -
-- Exploring LNURL and finding use cases, is really helping - inform lightning protocol development, rather than the - protocol dictating how lightning-network should be engaged - with. -
- Check - Awesome LNURL - for further information. -GET
- /lnurlp/api/v1/links
- {"X-Api-Key": <invoice_key>}[<pay_link_object>, ...]
- curl -X GET -H "X-Api-Key:
- "
-
- GET
- /lnurlp/api/v1/links/<pay_id>
- {"X-Api-Key": <invoice_key>}{"lnurl": <string>}
- curl -X GET
-
- -H "X-Api-Key:
- "
-
- POST
- /lnurlp/api/v1/links
- {"X-Api-Key": <admin_key>}{"description": <string> "amount": <integer>
- "max": <integer> "min": <integer>
- "comment_chars": <integer> "username":
- <string> }
- {"lnurl": <string>}
- curl -X POST -d
- '{"description": <string>, "amount":
- <integer>, "max": <integer>, "min":
- <integer>, "comment_chars": <integer>}' -H
- "Content-type: application/json" -H "X-Api-Key:
- "
-
- PUT
- /lnurlp/api/v1/links/<pay_id>
- {"X-Api-Key": <admin_key>}{"description": <string>, "amount":
- <integer>}
- {"lnurl": <string>}
- curl -X PUT
-
- -d '{"description": <string>, "amount":
- <integer>}' -H "Content-type: application/json" -H
- "X-Api-Key:
- "
-
- DELETE
- /lnurlp/api/v1/links/<pay_id>
- {"X-Api-Key": <admin_key>}
- curl -X DELETE
-
- -H "X-Api-Key:
- "
-
-
- WARNING: LNURL must be used over https or TOR
- LNURL is a range of lightning-network standards that allow
- us to use lightning-network differently. An LNURL-pay is a
- link that wallets use to fetch an invoice from a server
- on-demand. The link or QR code is fixed, but each time it is
- read by a compatible wallet a new QR code is issued by the
- service. It can be used to activate machines without them
- having to maintain an electronic screen to generate and show
- invoices locally, or to sell any predefined good or service
- automatically.
-
- Exploring LNURL and finding use cases, is really helping - inform lightning protocol development, rather than the - protocol dictating how lightning-network should be engaged - with. -
- Check - Awesome LNURL - for further information. -
- ID:
- Amount:
-
-
- price:
-
- Loading...
-
- Accepts comments:
-
- Dispatches webhook to:
-
- On success:
-
-
- Lightning Address:
-
-
-
-
GET /lnurlp/api/v1/links
+ {"X-Api-Key": <invoice_key>}[<pay_link_object>, ...]
+ curl -X GET {{ request.base_url }}lnurlp/api/v1/links -H "X-Api-Key:
+ {{ user.wallets[0].inkey }}"
+
+ GET
+ /lnurlp/api/v1/links/<pay_id>
+ {"X-Api-Key": <invoice_key>}{"lnurl": <string>}
+ curl -X GET {{ request.base_url }}lnurlp/api/v1/links/<pay_id>
+ -H "X-Api-Key: {{ user.wallets[0].inkey }}"
+
+ POST /lnurlp/api/v1/links
+ {"X-Api-Key": <admin_key>}{"description": <string> "amount": <integer> "max":
+ <integer> "min": <integer> "comment_chars":
+ <integer> "username": <string> }
+ {"lnurl": <string>}
+ curl -X POST {{ request.base_url }}lnurlp/api/v1/links -d
+ '{"description": <string>, "amount": <integer>, "max":
+ <integer>, "min": <integer>, "comment_chars":
+ <integer>}' -H "Content-type: application/json" -H "X-Api-Key:
+ {{ user.wallets[0].adminkey }}"
+
+ PUT
+ /lnurlp/api/v1/links/<pay_id>
+ {"X-Api-Key": <admin_key>}{"description": <string>, "amount": <integer>}
+ {"lnurl": <string>}
+ curl -X PUT {{ request.base_url }}lnurlp/api/v1/links/<pay_id>
+ -d '{"description": <string>, "amount": <integer>}' -H
+ "Content-type: application/json" -H "X-Api-Key: {{
+ user.wallets[0].adminkey }}"
+
+ DELETE
+ /lnurlp/api/v1/links/<pay_id>
+ {"X-Api-Key": <admin_key>}
+ curl -X DELETE {{ request.base_url
+ }}lnurlp/api/v1/links/<pay_id> -H "X-Api-Key: {{
+ user.wallets[0].adminkey }}"
+
+
+ WARNING: LNURL must be used over https or TOR
+ LNURL is a range of lightning-network standards that allow us to use
+ lightning-network differently. An LNURL-pay is a link that wallets use
+ to fetch an invoice from a server on-demand. The link or QR code is
+ fixed, but each time it is read by a compatible wallet a new QR code is
+ issued by the service. It can be used to activate machines without them
+ having to maintain an electronic screen to generate and show invoices
+ locally, or to sell any predefined good or service automatically.
+
+ Exploring LNURL and finding use cases, is really helping inform + lightning protocol development, rather than the protocol dictating how + lightning-network should be engaged with. +
+ Check + Awesome LNURL + for further information. +Use an LNURL compatible bitcoin wallet to pay.
+
+ ID: {{ qrCodeDialog.data.id }}
+ Amount: {{ qrCodeDialog.data.amount }}
+ {{ qrCodeDialog.data.currency }} price: {{
+ fiatRates[qrCodeDialog.data.currency] ?
+ fiatRates[qrCodeDialog.data.currency] + ' sat' : 'Loading...' }}
+ Accepts comments: {{ qrCodeDialog.data.comments }}
+ Dispatches webhook to: {{ qrCodeDialog.data.webhook
+ }}
+ On success: {{ qrCodeDialog.data.success }}
+
+ Lightning Address:
+ {{ qrCodeDialog.data.username }}@{{ domain }}
+
+
+