Milestone 3: RPC server, ZIP-320 #104
1 changed files with 33 additions and 1 deletions
|
@ -58,7 +58,39 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"params": []
|
"params": [],
|
||||||
|
"examples": [
|
||||||
|
{
|
||||||
|
"name": "ListWallets example",
|
||||||
|
"summary": "Get list of wallets",
|
||||||
|
"description": "Get the list of wallets available in Zenith for the current network (Mainnet/Testnet)",
|
||||||
|
"params": [],
|
||||||
|
"result": {
|
||||||
|
"name": "ListWallets result",
|
||||||
|
"value": [
|
||||||
|
{
|
||||||
|
"birthday": 2762066,
|
||||||
|
"index": 1,
|
||||||
|
"lastSync": 2919374,
|
||||||
|
"name": "Main",
|
||||||
|
"network": "TestNet"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"birthday": 2798877,
|
||||||
|
"index": 2,
|
||||||
|
"lastSync": 2894652,
|
||||||
|
"name": "zcashd",
|
||||||
|
"network": "TestNet"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"errors": [
|
||||||
|
{ "$ref": "#/components/errors/ZebraNotAvailable" },
|
||||||
|
{ "$ref": "#/components/errors/NoWallets" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"components": {
|
"components": {
|
||||||
|
|
Loading…
Reference in a new issue