mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-04 04:54:47 +01:00
241a891190
- disconnect - feerates - getroute - listforwards - listpays - ping - signmessage
47 lines
779 B
JSON
47 lines
779 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"msatoshi",
|
|
"riskfactor"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "pubkey",
|
|
"description": ""
|
|
},
|
|
"msatoshi": {
|
|
"type": "msat",
|
|
"description": ""
|
|
},
|
|
"riskfactor": {
|
|
"type": "u64",
|
|
"description": ""
|
|
},
|
|
"cltv": {
|
|
"type": "number",
|
|
"description": ""
|
|
},
|
|
"fromid": {
|
|
"type": "pubkey",
|
|
"description": ""
|
|
},
|
|
"fuzzpercent": {
|
|
"type": "u32",
|
|
"description": ""
|
|
},
|
|
"exclude": {
|
|
"type": "array",
|
|
"description": "",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"maxhops": {
|
|
"type": "u32",
|
|
"description": ""
|
|
}
|
|
}
|
|
}
|