verify-message
Confirm message authenticity by verifying if it was signed by a specific address using provided signature, ensuring secure blockchain interactions without exposing private keys.
Instructions
Verify that a message was signed by the provided address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
message | Yes | ||
signature | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"message": {
"type": "string"
},
"signature": {
"type": "string"
}
},
"required": [
"address",
"message",
"signature"
],
"type": "object"
}