mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
bd3c0ef85c
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
24 lines
591 B
JSON
24 lines
591 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"psbt",
|
|
"unsigned_tx",
|
|
"txid"
|
|
],
|
|
"properties": {
|
|
"psbt": {
|
|
"type": "string",
|
|
"description": "the PSBT representing the unsigned transaction"
|
|
},
|
|
"unsigned_tx": {
|
|
"type": "hex",
|
|
"description": "the unsigned transaction"
|
|
},
|
|
"txid": {
|
|
"type": "txid",
|
|
"description": "the transaction id of *unsigned_tx*; you hand this to lightning-txsend(7) or lightning-txdiscard(7), as the inputs of this transaction are reserved."
|
|
}
|
|
}
|
|
}
|