rgb-cln/doc/schemas/withdraw.request.json

28 lines
425 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"destination"
],
"properties": {
"destination": {
"type": "pubkey"
},
"satoshi": {
"type": "msat|all"
},
"feerate": {
"type": "feerate"
},
"minconf": {
"type": "u16"
},
"utxos": {
"type": "array",
"items": {
"type": "utxo"
}
}
}
}