0g-chain/cmd/kvcli/main.go

95 lines
2.4 KiB
Go
Raw Normal View History

2018-05-25 13:46:33 +00:00
package main
import (
"os"
"github.com/spf13/cobra"
"github.com/tendermint/tmlibs/cli"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/keys"
"github.com/cosmos/cosmos-sdk/client/rpc"
"github.com/cosmos/cosmos-sdk/client/tx"
"github.com/cosmos/cosmos-sdk/version"
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
bankcmd "github.com/cosmos/cosmos-sdk/x/bank/client/cli"
2018-06-18 14:49:09 +00:00
//ibccmd "github.com/cosmos/cosmos-sdk/x/ibc/client/cli"
//stakecmd "github.com/cosmos/cosmos-sdk/x/stake/client/cli"
2018-07-15 14:08:08 +00:00
paychancmd "github.com/kava-labs/kava/internal/x/paychan/client/cmd"
2018-05-25 13:46:33 +00:00
2018-06-16 16:21:13 +00:00
"github.com/kava-labs/kava/internal/app"
2018-06-21 23:37:55 +00:00
"github.com/kava-labs/kava/internal/lcd"
2018-06-18 14:49:09 +00:00
//"github.com/kava-labs/kava/internal/types"
2018-05-25 13:46:33 +00:00
)
// rootCmd is the entry point for this binary
var (
rootCmd = &cobra.Command{
2018-06-16 21:34:07 +00:00
Use: "kvcli",
Short: "Kava Light-Client",
2018-05-25 13:46:33 +00:00
}
)
func main() {
// disable sorting
cobra.EnableCommandSorting = false
// get the codec
cdc := app.MakeCodec()
// TODO: setup keybase, viper object, etc. to be passed into
// the below functions and eliminate global vars, like we do
// with the cdc
// add standard rpc, and tx commands
rpc.AddCommands(rootCmd)
rootCmd.AddCommand(client.LineBreak)
tx.AddCommands(rootCmd, cdc)
rootCmd.AddCommand(client.LineBreak)
// add query/post commands (custom to binary)
rootCmd.AddCommand(
client.GetCommands(
2018-06-18 14:49:09 +00:00
authcmd.GetAccountCmd("acc", cdc, authcmd.GetAccountDecoder(cdc)),
2018-05-25 13:46:33 +00:00
)...)
rootCmd.AddCommand(
2018-07-08 22:09:07 +00:00
client.PostCommands( // this just wraps the input cmds with common flags
2018-05-25 13:46:33 +00:00
bankcmd.SendTxCmd(cdc),
2018-06-18 14:49:09 +00:00
//ibccmd.IBCTransferCmd(cdc),
//ibccmd.IBCRelayCmd(cdc),
//stakecmd.GetCmdCreateValidator(cdc),
//stakecmd.GetCmdEditValidator(cdc),
//stakecmd.GetCmdDelegate(cdc),
//stakecmd.GetCmdUnbond(cdc),
2018-05-25 13:46:33 +00:00
)...)
2018-07-14 22:27:56 +00:00
paychanCmd := &cobra.Command{
Use: "paychan",
Short: "Payment channel subcommands",
}
2018-07-15 14:08:08 +00:00
paychanCmd.AddCommand(
2018-07-14 22:27:56 +00:00
client.PostCommands(
paychancmd.CreatePaychanCmd(cdc),
paychancmd.GenerateNewStateCmd(cdc),
paychancmd.ClosePaychanCmd(cdc),
)...)
rootCmd.AddCommand(
paychanCmd,
)
2018-05-25 13:46:33 +00:00
// add proxy, version and key info
rootCmd.AddCommand(
client.LineBreak,
lcd.ServeCommand(cdc),
keys.Commands(),
client.LineBreak,
version.VersionCmd,
)
// prepare and add flags
2018-06-16 21:34:07 +00:00
executor := cli.PrepareMainCmd(rootCmd, "KV", os.ExpandEnv("$HOME/.kvcli"))
2018-05-25 13:46:33 +00:00
executor.Execute()
}