mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
44 lines
863 B
JSON
44 lines
863 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"satoshi",
|
|
"feerate",
|
|
"startweight",
|
|
"utxos"
|
|
],
|
|
"properties": {
|
|
"satoshi": {
|
|
"type": "msat"
|
|
},
|
|
"feerate": {
|
|
"type": "feerate"
|
|
},
|
|
"startweight": {
|
|
"type": "number"
|
|
},
|
|
"utxos": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "utxo"
|
|
}
|
|
},
|
|
"reserve": {
|
|
"type": "number",
|
|
"description": "reserve is a number: if non-zero number then reserveinputs is called (successfully, with exclusive true) on the returned PSBT for this number of blocks (default: 72)."
|
|
},
|
|
"reservedok": {
|
|
"type": "bool"
|
|
},
|
|
"locktime": {
|
|
"type": "number"
|
|
},
|
|
"min_witness_weight": {
|
|
"type": "u32"
|
|
},
|
|
"excess_as_change": {
|
|
"type": "bool"
|
|
}
|
|
}
|
|
}
|