create_wallet
Generate BIP-39 mnemonics and derive VeChain wallet keys using standard derivation paths for blockchain account creation and management.
Instructions
Generate a BIP-39 mnemonic (12/15/18/21/24 words) and derive the account-level secp256k1 key at path m/44'/818'/0'/0 (VET coin type = 818). By default, the private key is REDACTED in the response. Set includeSecret=true to include it (handle with care).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wordlistSize | No | Length of the BIP-39 mnemonic wordlist. Default: 12 |
Input Schema (JSON Schema)
{
"properties": {
"wordlistSize": {
"description": "Length of the BIP-39 mnemonic wordlist. Default: 12",
"enum": [
12,
15,
18,
21,
24
],
"type": "number"
}
},
"type": "object"
}