get_address_from_private_key
Derive an EVM-compatible address from a private key using this tool. Input the private key in hex format to retrieve the corresponding blockchain address securely.
Instructions
Get the EVM address derived from a private key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privateKey | Yes | Private key in hex format (with or without 0x prefix). SECURITY: This is used only for address derivation and is not stored. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"privateKey": {
"description": "Private key in hex format (with or without 0x prefix). SECURITY: This is used only for address derivation and is not stored.",
"type": "string"
}
},
"required": [
"privateKey"
],
"type": "object"
}