Links
Comment on page

validateaddress

Return information about the given meowcoin address
Arguments: 1. "address" (string, required) The meowcoin address to validate
Example:
Request Body: (valid address)
{
"jsonrpc": "2.0",
"method": "validateaddress",
"params":["MPyNGZSSZ4rbjkVJRLn3v64pMcktpEYJnU"],
"id": 1
}
Response Body:
{
"isvalid": true,
"address": "MPyNGZSSZ4rbjkVJRLn3v64pMcktpEYJnU",
"scriptPubKey": "76a914b04db9611672485161d38b4ee215e7a8c57d944988ac",
"ismine": false,
"iswatchonly": false,
"isscript": false
}
Request Body: (invalid address)
{
"jsonrpc": "2.0",
"method": "validateaddress",
"params":["RBiXWscC63Jdn1GfDtRj8hgv4Q6Zppvpwb"],
"id": 1
}
Response Body:
{
"isvalid": false
}