get_address_from_private_key
Retrieve the EVM address from a private key using this tool on the bnbchain-mcp server. Input a private key in hex format for secure address derivation.
Instructions
Get the EVM address derived from a private key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privateKey | No | Private key in hex format (with or without 0x prefix). SECURITY: This is used only for address derivation and is not stored. | 0x5a2b7e4d9c8f1a3e6b0d2c5f4e3d2a1b0c9f8e7d6a5b4c3d2e1f0a9b8c7d6e5f4 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"privateKey": {
"default": "0x5a2b7e4d9c8f1a3e6b0d2c5f4e3d2a1b0c9f8e7d6a5b4c3d2e1f0a9b8c7d6e5f4",
"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"
}
},
"type": "object"
}