Add example for getbalance

This commit is contained in:
Rene Vergara 2024-08-16 13:28:44 -05:00
parent 9917356b40
commit 9c7e808794
Signed by: pitmutt
GPG key ID: 65122AD495A7F5B2

View file

@ -259,6 +259,35 @@
} }
} }
}, },
"examples": [
{
"name": "GetBalance example",
"summary": "Get account balance",
"description": "Provides the balance for the current account, showing the balance for the transparent, Sapling and Orchard pools, both for confirmed notes and unconfirmed notes",
"params": [
{
"name": "accountId",
"summary": "The integer ID of the account to use",
"value": 1
}
],
"result": {
"name": "GetBalance result",
"value":{
"confirmed": {
"orchard": 22210259,
"sapling": 0,
"transparent": 0
},
"unconfirmed": {
"orchard": 0,
"sapling": 0,
"transparent": 0
}
}
}
}
],
"errors": [ "errors": [
{ "$ref": "#/components/errors/InvalidAccount" } { "$ref": "#/components/errors/InvalidAccount" }
] ]