mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
d492c74e3d
Rune functionality moved into core from commando plugin. Changelog-Added: JSON-RPC: `checkrune`: check rune validity for authorization; `createrune` to create/modify rune; `listrunes` to list existing runes; `blacklistrune` to revoke permission of rune Changelog-Deprecated: JSON-RPC: `commando-rune`, `commando-listrunes` and `commando-blacklist`. No-schema-diff-check
18 lines
391 B
JSON
18 lines
391 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"added": "v23.08",
|
|
"properties": {
|
|
"start": {
|
|
"type": "u64",
|
|
"description": "first rune unique id to blacklist"
|
|
},
|
|
"end": {
|
|
"type": "u64",
|
|
"description": "final rune unique id to blacklist (defaults to start)"
|
|
}
|
|
}
|
|
}
|