Documentation exported from Syscoin Core 4.2.2

addressbalance (4.2.2 RPC)

blockchain

control

evo

evowallet

generating

governance

governancewallet

masternode

mining

network

rawtransactions

syscoin

syscoinwallet

util

wallet

zmq

addressbalance ["address",...] ( minconf maxconf )

Show the Syscoin balance of an array of addresses in your wallet.

Arguments:
1. addresses         (json array, required) The syscoin addresses to filter
     [
       "address",    (string) syscoin address
       ...
     ]
2. minconf           (numeric, optional, default=1) The minimum confirmations to filter
3. maxconf           (numeric, optional, default=9999999) The maximum confirmations to filter

Result:
{                  (json object)
  "amount" : n     (numeric) Syscoin balance of the addressn
}

Examples:
> syscoin-cli addressbalance "[\"sys1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl\",\"sys1qtyf33aa2tl62xhrzhralpytka0krxvt0a4e8ee\"]" 6 9999999
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "addressbalance", "params": ["[\"sys1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl\",\"sys1qtyf33aa2tl62xhrzhralpytka0krxvt0a4e8ee\"]", 6, 9999999]}' -H 'content-type: text/plain;' http://127.0.0.1:8370/