keeta_derive_account
Generate deterministic Keeta Network accounts from seed and index for blockchain operations. Supports SECP256K1, SECP256R1, and ED25519 algorithms to create unique public/private keypairs.
Instructions
Derive a Keeta account (public/private keypair) from a seed and index.
Each unique (seed, index, algorithm) combination produces a deterministic account. The returned address (keeta_...) is used in all other tools as account/token identifiers.
Supported algorithms:
SECP256K1 (default) — most common, Ethereum-compatible
SECP256R1 — WebAuthn/passkey compatible
ED25519 — fast signatures
Returns: { address: string, algorithm: string, index: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seed | Yes | Seed string from keeta_generate_seed | |
| index | Yes | Derivation index (0, 1, 2, ...) | |
| algorithm | No | Key algorithm — defaults to SECP256K1 |