core-lightning/doc/schemas/utxopsbt.request.json
2022-04-02 09:46:01 +10:30

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"
}
}
}