wallet_create_random
Generate a new Ethereum or EVM-compatible wallet with a random private key. Optionally encrypt it with a password, specify an HD path, or choose a locale for the wordlist.
Instructions
Create a new wallet with a random private key
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Optional locale for the wordlist | |
| password | No | Optional password to encrypt the wallet | |
| path | No | Optional HD path |
Input Schema (JSON Schema)
{
"properties": {
"locale": {
"description": "Optional locale for the wordlist",
"type": "string"
},
"password": {
"description": "Optional password to encrypt the wallet",
"type": "string"
},
"path": {
"description": "Optional HD path",
"type": "string"
}
},
"required": [],
"type": "object"
}