cosmos-sdk/client/keys/root.go

44 lines
1.3 KiB
Go
Raw Normal View History

2018-02-22 07:17:19 -08:00
package keys
import (
"github.com/cosmos/cosmos-sdk/client"
2018-03-09 01:15:56 -08:00
"github.com/gorilla/mux"
2018-02-22 07:17:19 -08:00
"github.com/spf13/cobra"
)
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(),
newKeyCommand(),
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
}
2018-03-09 01:15:56 -08:00
2018-04-18 21:49:24 -07:00
// resgister REST routes
2018-10-04 05:27:43 -07:00
func RegisterRoutes(r *mux.Router, indent bool) {
r.HandleFunc("/keys", QueryKeysRequestHandler(indent)).Methods("GET")
r.HandleFunc("/keys", AddNewKeyRequestHandler(indent)).Methods("POST")
2018-09-23 00:41:41 -07:00
r.HandleFunc("/keys/seed", SeedRequestHandler).Methods("GET")
2018-10-04 05:27:43 -07:00
r.HandleFunc("/keys/{name}/recover", RecoverRequestHandler(indent)).Methods("POST")
r.HandleFunc("/keys/{name}", GetKeyRequestHandler(indent)).Methods("GET")
2018-03-09 01:15:56 -08:00
r.HandleFunc("/keys/{name}", UpdateKeyRequestHandler).Methods("PUT")
r.HandleFunc("/keys/{name}", DeleteKeyRequestHandler).Methods("DELETE")
}