wallet_from_mnemonic
Generate an Ethereum or EVM-compatible wallet using a mnemonic phrase. Specify optional HD path and locale for wordlist to derive the wallet address and private key.
Instructions
Create a wallet from a mnemonic phrase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | No | Optional locale for the wordlist | |
mnemonic | Yes | The mnemonic phrase | |
path | No | Optional HD path |
Input Schema (JSON Schema)
{
"properties": {
"locale": {
"description": "Optional locale for the wordlist",
"type": "string"
},
"mnemonic": {
"description": "The mnemonic phrase",
"type": "string"
},
"path": {
"description": "Optional HD path",
"type": "string"
}
},
"required": [
"mnemonic"
],
"type": "object"
}