mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Added documentation for splice_update & splice_signed and tweaked splice_init. Added corresponding schemas for splice_* commands Changelog-None
24 lines
744 B
JSON
24 lines
744 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 final version of the psbt to complete the splice with"
|
|
},
|
|
"sign_first": {
|
|
"type": "boolean",
|
|
"description": "a flag that makes our node offer the final splice signature first (defaults to false). When false, the node will calculate who should sign first based off who is adding inputting the least sats to the splice as per spec"
|
|
}
|
|
}
|
|
}
|