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

28 lines
422 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"outputs"
],
"properties": {
"outptus": {
"type": "array",
"items": {
"type": "OutputDesc"
}
},
"feerate": {
"type": "feerate"
},
"minconf": {
"type": "u32"
},
"utxos": {
"type": "array",
"items": {
"type": "utxo"
}
}
}
}