Now let’s say someone give you a FTC adresse and you’d like to check if this address is valide.
# ./feathercoin-cli validateaddress 6knuNae3rcX7iL8YvWSSGCzvcNpXkhcKSb
{
"isvalid" : true,
"address" : "6knuNae3rcX7iL8YvWSSGCzvcNpXkhcKSb",
"ismine" : false
}
Now we want to know the received FTC of this address :
# ./feathercoin-cli getreceivedbyaddress 6knuNae3rcX7iL8YvWSSGCzvcNpXkhcKSb
0.00000000
Warning this is based on your local blockchain information, so if you are not fully sync this data is incorrect. ;)
To be continued with other command when my blockchain gonna be sync. ;)