get-wallet-address
Derive a wallet address from a BIP-39 mnemonic phrase securely without exposing the private key, supporting custom prefixes and HD account indexing. Ideal for interactions with the Osmosis blockchain.
Instructions
Gets the address from a mnemonic phrase without exposing the private key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountIndex | No | Account index for HD derivation (default: 0) | |
mnemonic | Yes | BIP-39 mnemonic phrase | |
prefix | No | Address prefix (default: 'osmo') | osmo |
Input Schema (JSON Schema)
{
"properties": {
"accountIndex": {
"default": 0,
"description": "Account index for HD derivation (default: 0)",
"type": "number"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase",
"type": "string"
},
"prefix": {
"default": "osmo",
"description": "Address prefix (default: 'osmo')",
"type": "string"
}
},
"required": [
"mnemonic"
],
"type": "object"
}