2022-04-01 06:12:45 +02:00
{
"$schema" : "http://json-schema.org/draft-07/schema#" ,
"type" : "object" ,
2022-04-01 06:12:45 +02:00
"additionalProperties" : false ,
2022-04-01 06:12:45 +02:00
"required" : [
"satoshi" ,
"feerate" ,
"startweight"
] ,
"properties" : {
"satoshi" : {
2022-08-26 11:46:43 +02:00
"type" : "msat_or_all"
2022-04-01 06:12:45 +02:00
} ,
"feerate" : {
"type" : "feerate"
} ,
"startweight" : {
2022-04-01 06:13:34 +02:00
"type" : "u32"
2022-04-01 06:12:45 +02:00
} ,
"minconf" : {
2022-04-01 06:13:34 +02:00
"type" : "u32"
2022-04-01 06:12:45 +02:00
} ,
"reserve" : {
2022-04-01 06:13:34 +02:00
"type" : "u32" ,
2022-04-01 06:12:45 +02:00
"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)."
} ,
"locktime" : {
2022-04-01 06:13:34 +02:00
"type" : "u32"
2022-04-01 06:12:45 +02:00
} ,
"min_witness_weight" : {
"type" : "u32"
} ,
"excess_as_change" : {
2022-04-01 06:13:34 +02:00
"type" : "boolean"
2023-06-29 02:14:10 +02:00
} ,
"nonwrapped" : {
"added" : "v23.02" ,
"type" : "boolean"
} ,
"opening_anchor_channel" : {
"added" : "v23.08" ,
"type" : "boolean"
2022-04-01 06:12:45 +02:00
}
}
}