wallet_create_mnemonic_phrase
Generate a secure mnemonic phrase for Ethereum and EVM-compatible wallets, with customizable length and optional locale support for enhanced usability.
Instructions
Create a mnemonic phrase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
length | Yes | The length of the mnemonic phrase | |
locale | No | Optional locale for the wordlist |
Input Schema (JSON Schema)
{
"properties": {
"length": {
"description": "The length of the mnemonic phrase",
"enum": [
12,
15,
18,
21,
24
],
"type": "number"
},
"locale": {
"description": "Optional locale for the wordlist",
"type": "string"
}
},
"required": [
"length"
],
"type": "object"
}