2022-07-20 23:14:43 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/earn/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetTxCmd returns the transaction commands for this module
|
|
|
|
func GetTxCmd() *cobra.Command {
|
2022-07-28 16:39:57 +00:00
|
|
|
earnTxCmd := &cobra.Command{
|
2022-07-20 23:14:43 +00:00
|
|
|
Use: types.ModuleName,
|
|
|
|
Short: fmt.Sprintf("%s transactions subcommands", types.ModuleName),
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
SuggestionsMinimumDistance: 2,
|
|
|
|
RunE: client.ValidateCmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
cmds := []*cobra.Command{
|
|
|
|
getCmdDeposit(),
|
|
|
|
getCmdWithdraw(),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range cmds {
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
}
|
|
|
|
|
2022-07-28 16:39:57 +00:00
|
|
|
earnTxCmd.AddCommand(cmds...)
|
2022-07-20 23:14:43 +00:00
|
|
|
|
2022-07-28 16:39:57 +00:00
|
|
|
return earnTxCmd
|
2022-07-20 23:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getCmdDeposit() *cobra.Command {
|
|
|
|
return &cobra.Command{
|
2022-09-12 16:43:59 +00:00
|
|
|
Use: "deposit [amount] [strategy]",
|
2022-07-20 23:14:43 +00:00
|
|
|
Short: "deposit coins to an earn vault",
|
|
|
|
Example: fmt.Sprintf(
|
2022-09-12 16:43:59 +00:00
|
|
|
`%s tx %s deposit 10000000ukava hard --from <key>`,
|
2022-07-20 23:14:43 +00:00
|
|
|
version.AppName, types.ModuleName,
|
|
|
|
),
|
2022-09-12 16:43:59 +00:00
|
|
|
Args: cobra.ExactArgs(2),
|
2022-07-20 23:14:43 +00:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
amount, err := sdk.ParseCoinNormalized(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-09-12 16:43:59 +00:00
|
|
|
strategy := types.NewStrategyTypeFromString(args[1])
|
|
|
|
if !strategy.IsValid() {
|
|
|
|
return fmt.Errorf("invalid strategy type: %s", args[1])
|
|
|
|
}
|
|
|
|
|
2022-07-20 23:14:43 +00:00
|
|
|
signer := clientCtx.GetFromAddress()
|
2022-09-12 16:43:59 +00:00
|
|
|
msg := types.NewMsgDeposit(signer.String(), amount, strategy)
|
2022-07-20 23:14:43 +00:00
|
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getCmdWithdraw() *cobra.Command {
|
|
|
|
return &cobra.Command{
|
2022-09-12 16:43:59 +00:00
|
|
|
Use: "withdraw [amount] [strategy]",
|
2022-07-20 23:14:43 +00:00
|
|
|
Short: "withdraw coins from an earn vault",
|
|
|
|
Example: fmt.Sprintf(
|
2022-09-12 16:43:59 +00:00
|
|
|
`%s tx %s withdraw 10000000ukava hard --from <key>`,
|
2022-07-20 23:14:43 +00:00
|
|
|
version.AppName, types.ModuleName,
|
|
|
|
),
|
2022-09-12 16:43:59 +00:00
|
|
|
Args: cobra.ExactArgs(2),
|
2022-07-20 23:14:43 +00:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
amount, err := sdk.ParseCoinNormalized(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-09-12 16:43:59 +00:00
|
|
|
strategy := types.NewStrategyTypeFromString(args[1])
|
|
|
|
if !strategy.IsValid() {
|
|
|
|
return fmt.Errorf("invalid strategy type: %s", args[1])
|
|
|
|
}
|
|
|
|
|
2022-07-20 23:14:43 +00:00
|
|
|
fromAddr := clientCtx.GetFromAddress()
|
2022-09-12 16:43:59 +00:00
|
|
|
msg := types.NewMsgWithdraw(fromAddr.String(), amount, strategy)
|
2022-07-20 23:14:43 +00:00
|
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|