You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
624 B
20 lines
624 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
echo ""
|
||
|
echo "
|
||
|
|
||
|
The getbalance RPC gets the balance in decimal bitcoins across all accounts or for a particular account.
|
||
|
|
||
|
Parameter #1—an account name
|
||
|
Parameter #2—the minimum number of confirmations
|
||
|
Parameter #3—whether to include watch-only addresses
|
||
|
Result—the balance in bitcoins
|
||
|
"
|
||
|
|
||
|
echo ""
|
||
|
echo ""
|
||
|
|
||
|
#curl --url "http://127.0.0.1:7778" --data "{\"agent\":\"bitcoinrpc\",\"method\":\"getbalance\",\"confirmations\":\"\",\"includeempty\":\"0\",\"watchonly\":\"0\"}"
|
||
|
|
||
|
curl --url "http://127.0.0.1:7778" --data "{\"agents\":\"bitcoinrpc\",\"coin\":\"BTCD\",\"method\":\"getwalletinfo\",\"params\":[]}"
|