Skip to main content

getreceivedbyaccount

getreceivedbyaccount "account" ( minconf addlocked )

DEPRECATED. Returns the total amount received by addresses with account in transactions with specified minimum number of confirmations.

# Amount received by the default account with at least 1 confirmation
yerbas-cli getreceivedbyaccount ""

# Amount received at the tabby account including unconfirmed amounts with zero confirmations
yerbas-cli getreceivedbyaccount "tabby" 0

# The amount with at least 6 confirmations
yerbas-cli getreceivedbyaccount "tabby" 6

Arguments

ArgumentTypeDescription
"account"(string)The selected account, may be the default account using "".
minconf(numeric)Only include transactions confirmed at least this many times.
addlocked(boolean)Whether to include transactions locked via InstantSend.
Arguments:
1. "account" (string, required) The selected account, may be the default account using "".
2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.
3. addlocked (bool, optional, default=false) Whether to include transactions locked via InstantSend.

Output

ResultTypeDescription
amount(numeric)The total amount in YERB received for this account.
Result:
amount (numeric) The total amount in YERB received for this account.

Examples

curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getreceivedbyaccount", "params": ["tabby", 6] }' -H 'content-type: text/plain;' http://127.0.0.1:9998/