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.
 
 
 
 
 
 

25 lines
866 B

#!/bin/bash
echo ""
echo " The getreceivedbyaddress RPC returns the total amount received by the specified address in transactions with the specified number of confirmations. It does not count coinbase transactions.
Parameter #1—the address
Parameter #2—the minimum number of confirmations
Result—the number of bitcoins receiv"
echo ""
echo "Dependencies:"
echo "Wallpassphrase, incase wallet is locked"
echo "getaccountaddres, incase account and address don't exist already"
echo "sendtoaddress, if you want to send some coins to that address"
echo ""
echo "Senario: Verify that correct amount is returned for mentioned address"
echo "Result: Correct amount for provided address should be returned"
echo ""
curl --url "http://127.0.0.1:7778" --data "{\"method\":\"getreceivedbyaddress\",\"params\":[\"RMcHHn9RtkdtgVHiCxysrG8q2EQTYiJfRT\"]}"
echo ""