Add placeholders for OpenRPC
This commit is contained in:
parent
473192e34b
commit
d4fd7c5044
1 changed files with 33 additions and 6 deletions
|
@ -103,7 +103,12 @@
|
|||
"description": "Create a new wallet for Zenith.",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Wallet",
|
||||
"schema": {
|
||||
"$ref": "#/components/contentDescriptors/WalletID"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "listaccounts",
|
||||
|
@ -162,7 +167,12 @@
|
|||
"description": "Create a new account in the given wallet.",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Account",
|
||||
"schema": {
|
||||
"$ref": "#/components/contentDescriptors/AccountID"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "listaddresses",
|
||||
|
@ -226,7 +236,12 @@
|
|||
"description": "Derive a new address in the given account.",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Address",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ZcashAddress"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "getbalance",
|
||||
|
@ -234,7 +249,11 @@
|
|||
"description": "Get the balance of the given account, including any unconfirmed balance.",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Balance",
|
||||
"schema": {
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "listreceived",
|
||||
|
@ -259,7 +278,11 @@
|
|||
"description": "Send one or more transactions ",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Operation ID",
|
||||
"schema": {
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "getoperationstatus",
|
||||
|
@ -267,7 +290,11 @@
|
|||
"description": "Get the status of the given operation",
|
||||
"tags": [{"$ref": "#/components/tags/draft"}],
|
||||
"params": [],
|
||||
"result": {}
|
||||
"result": {
|
||||
"name": "Operation status",
|
||||
"schema": {
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"components": {
|
||||
|
|
Loading…
Reference in a new issue