ethSign
Sign data on Ethereum networks using a standardized interface. Convert data to hex, specify a network or RPC URL, and generate secure signatures for blockchain operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | The data to sign. Will be converted to hex if not already in hex format. | |
provider | No | Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"description": "The data to sign. Will be converted to hex if not already in hex format.",
"type": "string"
},
"provider": {
"description": "Optional. Either a network name or custom RPC URL. Use getAllNetworks to see available networks and their details, or getNetwork to get info about a specific network. You can use any network name returned by these tools as a provider value.",
"type": "string"
}
},
"required": [
"data"
],
"type": "object"
}