wallet_verify_message
Verify the authenticity of a signed message on the Ethereum blockchain by validating the signature against the original message and the claimed address.
Instructions
Verify a signed message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The address that supposedly signed the message | |
| message | Yes | The original message | |
| signature | Yes | The signature to verify |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address that supposedly signed the message",
"type": "string"
},
"message": {
"description": "The original message",
"type": "string"
},
"signature": {
"description": "The signature to verify",
"type": "string"
}
},
"required": [
"message",
"signature",
"address"
],
"type": "object"
}