mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
21 lines
496 B
JSON
21 lines
496 B
JSON
|
{
|
||
|
"$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 (optional) base 64 encoded PSBT to begin with. If not specified, one will be generated automatically"
|
||
|
}
|
||
|
}
|
||
|
}
|