62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/client/utils"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/docs/examples/democoin/x/cool"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
|
authtxb "github.com/cosmos/cosmos-sdk/x/auth/client/txbuilder"
|
|
)
|
|
|
|
// QuizTxCmd invokes the coolness quiz transaction.
|
|
func QuizTxCmd(cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "cool [answer]",
|
|
Short: "What's cooler than being cool?",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
txBldr := authtxb.NewTxBuilderFromCLI().WithCodec(cdc)
|
|
cliCtx := context.NewCLIContext().
|
|
WithCodec(cdc).
|
|
WithAccountDecoder(authcmd.GetAccountDecoder(cdc))
|
|
|
|
from, err := cliCtx.GetFromAddress()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := cool.NewMsgQuiz(from, args[0])
|
|
|
|
return utils.CompleteAndBroadcastTxCli(txBldr, cliCtx, []sdk.Msg{msg})
|
|
},
|
|
}
|
|
}
|
|
|
|
// SetTrendTxCmd sends a new cool trend transaction.
|
|
func SetTrendTxCmd(cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "setcool [answer]",
|
|
Short: "You're so cool, tell us what is cool!",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
txBldr := authtxb.NewTxBuilderFromCLI().WithCodec(cdc)
|
|
cliCtx := context.NewCLIContext().
|
|
WithCodec(cdc).
|
|
WithAccountDecoder(authcmd.GetAccountDecoder(cdc))
|
|
|
|
from, err := cliCtx.GetFromAddress()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msg := cool.NewMsgSetTrend(from, args[0])
|
|
|
|
return utils.CompleteAndBroadcastTxCli(txBldr, cliCtx, []sdk.Msg{msg})
|
|
},
|
|
}
|
|
}
|