From 426ac214c6a9e7ebf06c290dc0d5bca6eb9aecbb Mon Sep 17 00:00:00 2001 From: Nando Vieira Date: Tue, 21 Jan 2025 14:51:28 -0800 Subject: [PATCH] Update help text to reflect how we do key generation now. Close #1816. --- FULL_HELP_DOCS.md | 4 ++-- cmd/soroban-cli/src/commands/keys/mod.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FULL_HELP_DOCS.md b/FULL_HELP_DOCS.md index 68852dd53..87a58e346 100644 --- a/FULL_HELP_DOCS.md +++ b/FULL_HELP_DOCS.md @@ -943,7 +943,7 @@ Create and manage identities including keys and addresses * `add` — Add a new identity (keypair, ledger, OS specific secure store) * `address` — Given an identity return its address (public key) * `fund` — Fund an identity on a test network -* `generate` — Generate a new identity with a seed phrase, currently 12 words +* `generate` — Generate a new identity using a 24-word seed phrase * `ls` — List identities * `rm` — Remove an identity * `secret` — Output an identity's secret key @@ -1012,7 +1012,7 @@ Fund an identity on a test network ## `stellar keys generate` -Generate a new identity with a seed phrase, currently 12 words +Generate a new identity using a 24-word seed phrase **Usage:** `stellar keys generate [OPTIONS] ` diff --git a/cmd/soroban-cli/src/commands/keys/mod.rs b/cmd/soroban-cli/src/commands/keys/mod.rs index 3e36df085..75f36bffb 100644 --- a/cmd/soroban-cli/src/commands/keys/mod.rs +++ b/cmd/soroban-cli/src/commands/keys/mod.rs @@ -21,7 +21,7 @@ pub enum Cmd { /// Fund an identity on a test network Fund(fund::Cmd), - /// Generate a new identity with a seed phrase, currently 12 words + /// Generate a new identity using a 24-word seed phrase Generate(generate::Cmd), /// List identities