sign-message
Sign messages securely using your MetaMask wallet. This tool ensures private keys remain protected while enabling blockchain transactions and operations.
Instructions
Sign a message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to sign. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message": {
"description": "Message to sign.",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}