package cli import ( "context" "cosmos-test/x/cosmostest/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" ) func CmdShowNextAuction() *cobra.Command { cmd := &cobra.Command{ Use: "show-next-auction", Short: "shows nextAuction", Args: cobra.NoArgs, RunE: func(cmd *cobra.Command, args []string) error { clientCtx := client.GetClientContextFromCmd(cmd) queryClient := types.NewQueryClient(clientCtx) params := &types.QueryGetNextAuctionRequest{} res, err := queryClient.NextAuction(context.Background(), params) if err != nil { return err } return clientCtx.PrintProto(res) }, } flags.AddQueryFlagsToCmd(cmd) return cmd }