Verify Signed Message
Paste a Triangles address, a signed message, and the signature. The explorer will call the daemon's verifymessage RPC and report whether the
signature is valid for that address and message.
How this works
- The browser sends your input to
/api/verify(server-side). - The server calls the Triangles daemon's
verifymessageJSON-RPC with the trio. - The daemon recovers the public key from the signature, hashes it, and compares to the address's hash. If they match, the signature is valid.
You can also run the same check yourself from the command line:
trianglesd verifymessage "<address>" "<signature>" "<message>"
