196 lines
6.3 KiB
Go
196 lines
6.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/spf13/cast"
|
|
"github.com/spf13/cobra"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"github.com/tendermint/tendermint/libs/cli"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
dbm "github.com/tendermint/tm-db"
|
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/debug"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/client/keys"
|
|
"github.com/cosmos/cosmos-sdk/client/rpc"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
"github.com/cosmos/cosmos-sdk/store"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
|
|
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
|
|
)
|
|
|
|
var (
|
|
rootCmd = &cobra.Command{
|
|
Use: "simd",
|
|
Short: "simulation app",
|
|
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
|
|
if err := client.SetCmdClientContextHandler(initClientCtx, cmd); err != nil {
|
|
return err
|
|
}
|
|
return server.InterceptConfigsPreRunHandler(cmd)
|
|
},
|
|
}
|
|
|
|
encodingConfig = simapp.MakeEncodingConfig()
|
|
initClientCtx = client.Context{}.
|
|
WithJSONMarshaler(encodingConfig.Marshaler).
|
|
WithTxGenerator(encodingConfig.TxGenerator).
|
|
WithCodec(encodingConfig.Amino).
|
|
WithInput(os.Stdin).
|
|
WithAccountRetriever(types.NewAccountRetriever(encodingConfig.Marshaler)).
|
|
WithBroadcastMode(flags.BroadcastBlock)
|
|
)
|
|
|
|
// Execute executes the root command.
|
|
func Execute() error {
|
|
// Create and set a client.Context on the command's Context. During the pre-run
|
|
// of the root command, a default initialized client.Context is provided to
|
|
// seed child command execution with values such as AccountRetriver, Keyring,
|
|
// and a Tendermint RPC. This requires the use of a pointer reference when
|
|
// getting and setting the client.Context. Ideally, we utilize
|
|
// https://github.com/spf13/cobra/pull/1118.
|
|
ctx := context.Background()
|
|
ctx = context.WithValue(ctx, client.ClientContextKey, &client.Context{})
|
|
ctx = context.WithValue(ctx, server.ServerContextKey, server.NewDefaultContext())
|
|
|
|
executor := cli.PrepareBaseCmd(rootCmd, "", simapp.DefaultNodeHome)
|
|
return executor.ExecuteContext(ctx)
|
|
}
|
|
|
|
func init() {
|
|
authclient.Codec = encodingConfig.Marshaler
|
|
|
|
rootCmd.AddCommand(
|
|
genutilcli.InitCmd(simapp.ModuleBasics, simapp.DefaultNodeHome),
|
|
genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}),
|
|
genutilcli.MigrateGenesisCmd(),
|
|
genutilcli.GenTxCmd(simapp.ModuleBasics, banktypes.GenesisBalancesIterator{}),
|
|
genutilcli.ValidateGenesisCmd(simapp.ModuleBasics),
|
|
AddGenesisAccountCmd(),
|
|
cli.NewCompletionCmd(rootCmd, true),
|
|
testnetCmd(simapp.ModuleBasics, banktypes.GenesisBalancesIterator{}),
|
|
debug.Cmd(),
|
|
)
|
|
|
|
server.AddCommands(rootCmd, newApp, exportAppStateAndTMValidators)
|
|
|
|
// add keybase, auxiliary RPC, query, and tx child commands
|
|
rootCmd.AddCommand(
|
|
rpc.StatusCommand(),
|
|
queryCommand(),
|
|
txCommand(),
|
|
keys.Commands(),
|
|
)
|
|
}
|
|
|
|
func queryCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "query",
|
|
Aliases: []string{"q"},
|
|
Short: "Querying subcommands",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
authcmd.GetAccountCmd(encodingConfig.Amino),
|
|
rpc.ValidatorCommand(encodingConfig.Amino),
|
|
rpc.BlockCommand(),
|
|
authcmd.QueryTxsByEventsCmd(encodingConfig.Amino),
|
|
authcmd.QueryTxCmd(encodingConfig.Amino),
|
|
)
|
|
|
|
simapp.ModuleBasics.AddQueryCommands(cmd, initClientCtx)
|
|
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func txCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "tx",
|
|
Short: "Transactions subcommands",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
authcmd.GetSignCommand(initClientCtx),
|
|
authcmd.GetSignBatchCommand(encodingConfig.Amino),
|
|
authcmd.GetMultiSignCommand(initClientCtx),
|
|
authcmd.GetValidateSignaturesCommand(initClientCtx),
|
|
flags.LineBreak,
|
|
authcmd.GetBroadcastCommand(initClientCtx),
|
|
authcmd.GetEncodeCommand(initClientCtx),
|
|
authcmd.GetDecodeCommand(initClientCtx),
|
|
flags.LineBreak,
|
|
)
|
|
|
|
simapp.ModuleBasics.AddTxCommands(cmd, initClientCtx)
|
|
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, appOpts server.AppOptions) server.Application {
|
|
var cache sdk.MultiStorePersistentCache
|
|
|
|
if cast.ToBool(appOpts.Get(server.FlagInterBlockCache)) {
|
|
cache = store.NewCommitKVStoreCacheManager()
|
|
}
|
|
|
|
skipUpgradeHeights := make(map[int64]bool)
|
|
for _, h := range cast.ToIntSlice(appOpts.Get(server.FlagUnsafeSkipUpgrades)) {
|
|
skipUpgradeHeights[int64(h)] = true
|
|
}
|
|
|
|
pruningOpts, err := server.GetPruningOptionsFromFlags(appOpts)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return simapp.NewSimApp(
|
|
logger, db, traceStore, true, skipUpgradeHeights,
|
|
cast.ToString(appOpts.Get(flags.FlagHome)),
|
|
cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)),
|
|
baseapp.SetPruning(pruningOpts),
|
|
baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))),
|
|
baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(server.FlagHaltHeight))),
|
|
baseapp.SetHaltTime(cast.ToUint64(appOpts.Get(server.FlagHaltTime))),
|
|
baseapp.SetInterBlockCache(cache),
|
|
baseapp.SetTrace(cast.ToBool(appOpts.Get(server.FlagTrace))),
|
|
)
|
|
}
|
|
|
|
func exportAppStateAndTMValidators(
|
|
logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailWhiteList []string,
|
|
) (json.RawMessage, []tmtypes.GenesisValidator, *abci.ConsensusParams, error) {
|
|
|
|
var simApp *simapp.SimApp
|
|
if height != -1 {
|
|
simApp = simapp.NewSimApp(logger, db, traceStore, false, map[int64]bool{}, "", uint(1))
|
|
|
|
if err := simApp.LoadHeight(height); err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
} else {
|
|
simApp = simapp.NewSimApp(logger, db, traceStore, true, map[int64]bool{}, "", uint(1))
|
|
}
|
|
|
|
return simApp.ExportAppStateAndValidators(forZeroHeight, jailWhiteList)
|
|
}
|