Add method descriptions to RPC
This commit is contained in:
parent
606c25c2c3
commit
dbe352acac
1 changed files with 6 additions and 0 deletions
|
@ -19,6 +19,8 @@
|
|||
"methods": [
|
||||
{
|
||||
"name": "getinfo",
|
||||
"summary": "Get basic Zenith information",
|
||||
"description": "Get basic information about Zenith, such as the network it is running on and the version of Zebra it is connected to",
|
||||
"tags": [ { "$ref": "#/components/tags/information" }],
|
||||
"result" : {
|
||||
"name": "Zenith information",
|
||||
|
@ -48,6 +50,8 @@
|
|||
},
|
||||
{
|
||||
"name": "listwallets",
|
||||
"summary": "Get the list of available wallets",
|
||||
"description": "Returns a list of available wallets per the network that the Zebra node is running on.",
|
||||
"tags": [ { "$ref": "#/components/tags/wallet" }],
|
||||
"result": {
|
||||
"name": "Wallets",
|
||||
|
@ -94,6 +98,8 @@
|
|||
},
|
||||
{
|
||||
"name": "listaccounts",
|
||||
"summary": "DRAFT: List existing accounts for a wallet ID",
|
||||
"description": "List existing accounts for the given wallet ID or provide an error if none",
|
||||
"tags": [ { "$ref": "#/components/tags/wallet" }],
|
||||
"result": {
|
||||
"name": "Accounts",
|
||||
|
|
Loading…
Reference in a new issue