Skip to content
Merged
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
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