rgb_decode_lightning_invoice
Decode RGB Lightning invoices to extract payment details and transaction information for RGB asset transfers on the Lightning Network.
Instructions
Decode an RGB Lightning invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | Yes | The RGB Lightning invoice to decode |
Input Schema (JSON Schema)
{
"properties": {
"invoice": {
"description": "The RGB Lightning invoice to decode",
"type": "string"
}
},
"required": [
"invoice"
],
"type": "object"
}