wallet_get_address
Retrieve the wallet address from a provided private key, mnemonic, or JSON. Automatically uses the PRIVATE_KEY environment variable if no input is given.
Instructions
Get the wallet address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wallet | No | The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set. |
Input Schema (JSON Schema)
{
"properties": {
"wallet": {
"description": "The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set.",
"type": "string"
}
},
"required": [],
"type": "object"
}