2024-05-01 04:26:39 +00:00
|
|
|
package main
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2024-05-01 03:17:24 +00:00
|
|
|
"github.com/0glabs/0g-chain/app"
|
2022-01-08 00:39:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// newTxCmd creates all commands for submitting blockchain transactions.
|
|
|
|
func newTxCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "tx",
|
|
|
|
Short: "Transactions subcommands",
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
SuggestionsMinimumDistance: 2,
|
|
|
|
RunE: client.ValidateCmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(
|
|
|
|
authcmd.GetSignCommand(),
|
|
|
|
authcmd.GetSignBatchCommand(),
|
|
|
|
authcmd.GetMultiSignCommand(),
|
|
|
|
authcmd.GetMultiSignBatchCmd(),
|
|
|
|
authcmd.GetValidateSignaturesCommand(),
|
|
|
|
authcmd.GetBroadcastCommand(),
|
|
|
|
authcmd.GetEncodeCommand(),
|
|
|
|
authcmd.GetDecodeCommand(),
|
|
|
|
)
|
|
|
|
|
|
|
|
app.ModuleBasics.AddTxCommands(cmd)
|
|
|
|
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|