z_gettotalbalance - Zcash 5.5.0 RPC

z_gettotalbalance ( minconf includeWatchonly )

DEPRECATED. Please use z_getbalanceforaccount or getbalance (for legacy transparent balance) instead.

Return the total value of funds stored in the node's wallet.

CAUTION: If the wallet contains any addresses for which it only has incoming viewing keys,
the returned private balance may be larger than the actual balance, because spends cannot
be detected with incoming viewing keys.

Arguments:
1. minconf          (numeric, optional, default=1) Only include private and transparent transactions confirmed at least this many times.
2. includeWatchonly (bool, optional, default=false) Also include balance in watchonly addresses (see 'importaddress' and 'z_importviewingkey')

Result:
{
  "transparent": xxxxx,     (numeric) the total balance of transparent funds
  "private": xxxxx,         (numeric) the total balance of shielded funds (in all shielded addresses)
  "total": xxxxx,           (numeric) the total balance of both transparent and shielded funds
}

Examples:

The total amount in the wallet
> zcash-cli z_gettotalbalance 

The total amount in the wallet at least 5 blocks confirmed
> zcash-cli z_gettotalbalance 5

As a JSON RPC call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "z_gettotalbalance", "params": [5] }' -H 'content-type: text/plain;' http://127.0.0.1:8232/


Maintained by @_garethtdavies; modified by: mdr0id;license of the docs is MIT (see zcash repo), license of the scripts and webpage is also MIT (github repo)

Note it uses a mainnet zcash node