MCP Crypto Wallet EVM

by dcSpark
Verified
MIT License
30
2
  • Apple
  • Linux

wallet_verify_message

Verify a signed message

Input Schema

NameRequiredDescriptionDefault
addressYesThe address that supposedly signed the message
messageYesThe original message
signatureYesThe 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" }