rgb_create_lightning_invoice
Generate a Lightning Network payment invoice by specifying the amount in satoshis and an optional description for transaction tracking.
Instructions
Create a Lightning Network invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount in satoshis | |
description | No | Invoice description |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount in satoshis",
"type": "number"
},
"description": {
"description": "Invoice description",
"type": "string"
}
},
"required": [
"amount"
],
"type": "object"
}