decode_invoice
Decode BOLT11 Lightning invoices to retrieve payment details, enabling clear transaction information extraction from the Bitcoin network.
Instructions
Decode a Lightning invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | Yes | BOLT11 Lightning invoice |
Input Schema (JSON Schema)
{
"properties": {
"invoice": {
"description": "BOLT11 Lightning invoice",
"type": "string"
}
},
"required": [
"invoice"
],
"type": "object"
}