core-lightning/doc/schemas/splice_signed.schema.json
Dusty Daemon aa2df28faf splicing: Update documentation
Added documentation for splice_update & splice_signed and tweaked splice_init.

Added corresponding schemas for splice_* commands

Changelog-None
2023-08-07 12:38:36 +09:30

21 lines
429 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"tx",
"txid"
],
"added": "v23.08",
"properties": {
"tx": {
"type": "hex",
"description": "The hex representation of the final transaction that is published"
},
"txid": {
"type": "txid",
"description": "The txid is of the final transaction"
}
}
}