Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update help text to reflect how we do key generation now. #1843

Merged
merged 3 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ Create and manage identities including keys and addresses
* `add` — Add a new identity (keypair, ledger, OS specific secure store)
* `public-key` — 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
Expand Down Expand Up @@ -1013,7 +1013,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] <NAME>`

Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/keys/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,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
Expand Down
Loading