Skip to content

Commit

Permalink
docs: added a note to distinguish between chain accounts and Ignite a…
Browse files Browse the repository at this point in the history
…ccounts (#2777)

* docs: added a note to distinguish between chain accounts and Ignite accounts

* fix: typo

Co-authored-by: Alex Johnson <alex@shmeeload.xyz>
  • Loading branch information
fadeev and Alex Johnson committed Sep 2, 2022
1 parent e2db150 commit d0fd60f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions ignite/cmd/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,16 @@ const (
func NewAccount() *cobra.Command {
c := &cobra.Command{
Use: "account [command]",
Short: "Commands for managing accounts",
Long: `Commands for managing accounts. An account is a pair of a private key and a public key.
Ignite CLI uses accounts to interact with the Ignite blockchain, use an IBC relayer, and more.`,
Short: "Commands for managing Ignite accounts",
Long: `Commands for managing Ignite accounts. An Ignite account is a private/public
keypair stored in a keyring. Currently Ignite accounts are used when interacting
with Ignite relayer commands.
Note: Ignite account commands are not for managing your chain's keys and accounts. Use
you chain's binary to manage accounts from "config.yml". For example, if your
blockchain is called "mychain", use "mychaind keys" to manage keys for the
chain.
`,
Aliases: []string{"a"},
Args: cobra.ExactArgs(1),
}
Expand Down

0 comments on commit d0fd60f

Please sign in to comment.