ValidateAddress
POST: http://172.104.51.182:16667/wallet/validateaddress
Validates address, returns either true or false.
Return value: True or False
BODY PARAMS
{
address
string required}
note:
address should be in base58checksum, hexString, or base64 format
Example : curl --request POST --url http://172.104.51.182:16667/wallet/validateaddress --header 'Accept: application/json' --header 'Content-Type: application/json' --data ' { "address": "41e741d61df254f4dfa3a832f5589f243d3c561806" }
Input:
{
"address": "41e741d61df254f4dfa3a832f5589f243d3c561806"
}
Response:
{ "result": true, "message": "Hex string format" }
Last updated