48 lines
976 B
Go
48 lines
976 B
Go
package cli
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"cosmos-test/x/cosmostest/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var _ = strconv.Itoa(0)
|
|
|
|
func CmdNewAuction() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "new-auction [name] [description] [denom]",
|
|
Short: "Broadcast message newAuction",
|
|
Args: cobra.ExactArgs(3),
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
argName := args[0]
|
|
argDescription := args[1]
|
|
argDenom := args[2]
|
|
|
|
clientCtx, err := client.GetClientTxContext(cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := types.NewMsgNewAuction(
|
|
clientCtx.GetFromAddress().String(),
|
|
argName,
|
|
argDescription,
|
|
argDenom,
|
|
)
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
return err
|
|
}
|
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
|
},
|
|
}
|
|
|
|
flags.AddTxFlagsToCmd(cmd)
|
|
|
|
return cmd
|
|
}
|