{
  "message": "verifymessage \"address\" \"signature\" \"message\"\n\nVerify a signed message.\n\nArguments:\n1. address      (string, required) The bitcoin endgame  address to use for the signature.\n2. signature    (string, required) The signature provided by the signer in base 64 encoding (see signmessage).\n3. message      (string, required) The message that was signed.\n\nResult:\ntrue|false    (boolean) If the signature is verified or not.\n\nExamples:\n\nUnlock the wallet for 30 seconds\n> bitcoinendgame-cli walletpassphrase \"mypassphrase\" 30\n\nCreate the signature\n> bitcoinendgame-cli signmessage \"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" \"my message\"\n\nVerify the signature\n> bitcoinendgame-cli verifymessage \"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\" \"signature\" \"my message\"\n\nAs a JSON-RPC call\n> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", \"method\": \"verifymessage\", \"params\": [\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX\", \"signature\", \"my message\"]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n",
  "code": -1,
  "name": "RpcError"
}