rgb-cln/doc/schemas/upgradewallet.schema.json

31 lines
671 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"upgraded_outs"
],
"properties": {
"upgraded_outs": {
"type": "u64",
"description": "Count of spent/upgraded UTXOs",
"added": "v23.02"
},
"psbt": {
"type": "string",
"description": "The PSBT that was finalized and sent",
"added": "v23.02"
},
"tx": {
"type": "hex",
"description": "The raw transaction which was sent",
"added": "v23.02"
},
"txid": {
"type": "txid",
"description": "The txid of the **tx**",
"added": "v23.02"
}
}
}