core-lightning/doc/schemas/splice_update.request.json

21 lines
479 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"channel_id",
"psbt"
],
"added": "v23.08",
"properties": {
"channel_id": {
"type": "string",
"description": "the channel id of the channel to be spliced"
},
"psbt": {
"type": "string",
"description": "the base 64 encoded PSBT returned from `splice_init` with any changes added by the user"
}
}
}