Skip to content

docs: cleanup 1912 #2013

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

Merged
merged 1 commit into from
Apr 28, 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 how-to-guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ An advanced option for key management is using the `cel-key` utility, which is a

If you're using the quickstart script above, you will have to build `cel-key` separately from source. You can find the instructions for building `cel-key` in the [celestia-node](/how-to-guides/celestia-node.md) documentation.

#### Managing the key used by celestia state account-address
#### Managing the key returned by `celestia state account-address`

When you run the command `celestia state account-address`, it returns the address of the key that your node is currently using. This is the same key that was generated during node initialization or that you've manually created/imported with `cel-key`.

Expand All @@ -257,7 +257,7 @@ For detailed instructions on how to:
- Verify the relationship between this key and your node
- Use a specific key with your node

Please refer to our comprehensive guide on [Managing the key used by celestia state account-address](/tutorials/celestia-node-key.md#managing-the-key-used-by-celestia-state-account-address).
Please refer to our comprehensive guide on [Managing the key returned by celestia state account-address](/tutorials/celestia-node-key.md#managing-the-key-returned-by-celestia-state-account-address).

### Rust client tutorial

Expand Down
6 changes: 3 additions & 3 deletions tutorials/celestia-node-key.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ then enter your bip39 mnemonic:
./cel-key --help
```

## Managing the key used by celestia state account-address
## Managing the key returned by `celestia state account-address`

When you run a Celestia node and use the command `celestia state account-address`, it returns the address of the key that your node is currently using. This key is the same one that was either:

1. Auto-generated during node initialization with `celestia <node-type> init`
2. Manually created using `cel-key add`
3. Imported/recovered using `cel-key add --recover`
2. Manually created using `cel-key add <name> [flags]`
3. Imported/recovered using `cel-key add <name> --recover --node.type <node-type>`

### Understanding the relationship

Expand Down