cosmos-sdk/client/keys/root.go

32 lines
730 B
Go
Raw Normal View History

2018-02-22 07:17:19 -08:00
package keys
import (
"github.com/spf13/cobra"
2018-12-10 06:27:25 -08:00
"github.com/cosmos/cosmos-sdk/client"
2018-02-22 07:17:19 -08:00
)
2018-02-22 08:20:25 -08:00
// Commands registers a sub-tree of commands to interact with
// local private key storage.
func Commands() *cobra.Command {
cmd := &cobra.Command{
Use: "keys",
Short: "Add or view local private keys",
Long: `Keys allows you to manage your local keystore for tendermint.
2018-02-22 07:17:19 -08:00
2018-02-22 08:20:25 -08:00
These keys may be in any format supported by go-crypto and can be
used by light-clients, full nodes, or any other application that
needs to sign with a private key.`,
}
cmd.AddCommand(
mnemonicKeyCommand(),
2018-02-22 08:20:25 -08:00
addKeyCommand(),
listKeysCmd(),
showKeysCmd(),
client.LineBreak,
2018-02-22 08:20:25 -08:00
deleteKeyCommand(),
updateKeyCommand(),
)
return cmd
2018-02-22 07:17:19 -08:00
}