2021-04-17 10:00:07 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2021-04-18 17:23:26 +00:00
|
|
|
"math/big"
|
2021-04-17 10:00:07 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp/params"
|
|
|
|
"github.com/cosmos/cosmos-sdk/snapshots"
|
|
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
"github.com/spf13/cast"
|
|
|
|
"github.com/spf13/cobra"
|
2021-04-18 17:23:26 +00:00
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
tmcli "github.com/tendermint/tendermint/libs/cli"
|
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
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/rpc"
|
|
|
|
sdkserver "github.com/cosmos/cosmos-sdk/server"
|
|
|
|
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
|
|
|
"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"
|
|
|
|
|
2021-06-22 10:49:18 +00:00
|
|
|
"github.com/tharsis/ethermint/app"
|
|
|
|
ethermintclient "github.com/tharsis/ethermint/client"
|
|
|
|
"github.com/tharsis/ethermint/encoding"
|
2021-04-17 10:00:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewRootCmd creates a new root command for simd. It is called once in the
|
|
|
|
// main function.
|
|
|
|
func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
|
2021-06-04 13:45:37 +00:00
|
|
|
encodingConfig := encoding.MakeConfig(app.ModuleBasics)
|
2021-04-17 10:00:07 +00:00
|
|
|
initClientCtx := client.Context{}.
|
|
|
|
WithJSONMarshaler(encodingConfig.Marshaler).
|
|
|
|
WithInterfaceRegistry(encodingConfig.InterfaceRegistry).
|
|
|
|
WithTxConfig(encodingConfig.TxConfig).
|
|
|
|
WithLegacyAmino(encodingConfig.Amino).
|
|
|
|
WithInput(os.Stdin).
|
|
|
|
WithAccountRetriever(types.AccountRetriever{}).
|
2021-04-18 17:23:26 +00:00
|
|
|
WithBroadcastMode(flags.BroadcastBlock).
|
2021-04-17 10:00:07 +00:00
|
|
|
WithHomeDir(app.DefaultNodeHome)
|
|
|
|
|
|
|
|
rootCmd := &cobra.Command{
|
|
|
|
Use: "ethermintd",
|
2021-04-18 17:23:26 +00:00
|
|
|
Short: "Ethermint Daemon",
|
2021-04-17 10:00:07 +00:00
|
|
|
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
|
|
|
|
if err := client.SetCmdClientContextHandler(initClientCtx, cmd); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
return InterceptConfigsPreRunHandler(cmd)
|
2021-04-17 10:00:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
authclient.Codec = encodingConfig.Marshaler
|
2021-04-18 17:23:26 +00:00
|
|
|
sdk.PowerReduction = sdk.NewIntFromBigInt(new(big.Int).Exp(big.NewInt(10), big.NewInt(18), nil))
|
2021-04-17 10:00:07 +00:00
|
|
|
|
|
|
|
rootCmd.AddCommand(
|
2021-04-18 17:23:26 +00:00
|
|
|
ethermintclient.ValidateChainID(
|
|
|
|
genutilcli.InitCmd(app.ModuleBasics, app.DefaultNodeHome),
|
2021-04-17 10:00:07 +00:00
|
|
|
),
|
|
|
|
genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome),
|
|
|
|
genutilcli.MigrateGenesisCmd(),
|
2021-05-20 07:44:07 +00:00
|
|
|
genutilcli.GenTxCmd(app.ModuleBasics, encodingConfig.TxConfig, banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome),
|
2021-04-17 10:00:07 +00:00
|
|
|
genutilcli.ValidateGenesisCmd(app.ModuleBasics),
|
|
|
|
AddGenesisAccountCmd(app.DefaultNodeHome),
|
|
|
|
tmcli.NewCompletionCmd(rootCmd, true),
|
|
|
|
ethermintclient.TestnetCmd(app.ModuleBasics, banktypes.GenesisBalancesIterator{}),
|
|
|
|
debug.Cmd(),
|
|
|
|
)
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
tendermintCmd := &cobra.Command{
|
|
|
|
Use: "tendermint",
|
|
|
|
Short: "Tendermint subcommands",
|
|
|
|
}
|
|
|
|
|
|
|
|
tendermintCmd.AddCommand(
|
|
|
|
sdkserver.ShowNodeIDCmd(),
|
|
|
|
sdkserver.ShowValidatorCmd(),
|
|
|
|
sdkserver.ShowAddressCmd(),
|
|
|
|
sdkserver.VersionCmd(),
|
|
|
|
)
|
|
|
|
|
|
|
|
rootCmd.AddCommand(
|
|
|
|
StartCmd(newApp, app.DefaultNodeHome),
|
|
|
|
sdkserver.UnsafeResetAllCmd(),
|
|
|
|
flags.LineBreak,
|
|
|
|
tendermintCmd,
|
|
|
|
sdkserver.ExportCmd(createAppAndExport, app.DefaultNodeHome),
|
|
|
|
flags.LineBreak,
|
|
|
|
version.NewVersionCommand(),
|
|
|
|
)
|
2021-04-17 10:00:07 +00:00
|
|
|
|
|
|
|
// add keybase, auxiliary RPC, query, and tx child commands
|
|
|
|
rootCmd.AddCommand(
|
|
|
|
rpc.StatusCommand(),
|
|
|
|
queryCommand(),
|
|
|
|
txCommand(),
|
2021-04-18 17:23:26 +00:00
|
|
|
ethermintclient.KeyCommands(app.DefaultNodeHome),
|
2021-04-17 10:00:07 +00:00
|
|
|
)
|
2021-04-18 17:23:26 +00:00
|
|
|
rootCmd = addTxFlags(rootCmd)
|
|
|
|
|
2021-06-08 07:07:11 +00:00
|
|
|
return rootCmd, encodingConfig
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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(),
|
|
|
|
rpc.ValidatorCommand(),
|
|
|
|
rpc.BlockCommand(),
|
|
|
|
authcmd.QueryTxsByEventsCmd(),
|
|
|
|
authcmd.QueryTxCmd(),
|
|
|
|
)
|
|
|
|
|
|
|
|
app.ModuleBasics.AddQueryCommands(cmd)
|
|
|
|
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(),
|
|
|
|
authcmd.GetSignBatchCommand(),
|
|
|
|
authcmd.GetMultiSignCommand(),
|
|
|
|
authcmd.GetValidateSignaturesCommand(),
|
|
|
|
flags.LineBreak,
|
|
|
|
authcmd.GetBroadcastCommand(),
|
|
|
|
authcmd.GetEncodeCommand(),
|
|
|
|
authcmd.GetDecodeCommand(),
|
|
|
|
flags.LineBreak,
|
|
|
|
)
|
|
|
|
|
|
|
|
app.ModuleBasics.AddTxCommands(cmd)
|
|
|
|
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, appOpts servertypes.AppOptions) servertypes.Application {
|
2021-04-17 10:00:07 +00:00
|
|
|
var cache sdk.MultiStorePersistentCache
|
|
|
|
|
|
|
|
if cast.ToBool(appOpts.Get(sdkserver.FlagInterBlockCache)) {
|
|
|
|
cache = store.NewCommitKVStoreCacheManager()
|
|
|
|
}
|
|
|
|
|
|
|
|
skipUpgradeHeights := make(map[int64]bool)
|
|
|
|
for _, h := range cast.ToIntSlice(appOpts.Get(sdkserver.FlagUnsafeSkipUpgrades)) {
|
|
|
|
skipUpgradeHeights[int64(h)] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
pruningOpts, err := sdkserver.GetPruningOptionsFromFlags(appOpts)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
snapshotDir := filepath.Join(cast.ToString(appOpts.Get(flags.FlagHome)), "data", "snapshots")
|
|
|
|
snapshotDB, err := sdk.NewLevelDB("metadata", snapshotDir)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
snapshotStore, err := snapshots.NewStore(snapshotDB, snapshotDir)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
ethermintApp := app.NewEthermintApp(
|
2021-04-17 10:00:07 +00:00
|
|
|
logger, db, traceStore, true, skipUpgradeHeights,
|
|
|
|
cast.ToString(appOpts.Get(flags.FlagHome)),
|
|
|
|
cast.ToUint(appOpts.Get(sdkserver.FlagInvCheckPeriod)),
|
2021-06-04 13:45:37 +00:00
|
|
|
encoding.MakeConfig(app.ModuleBasics), // Ideally, we would reuse the one created by NewRootCmd.
|
2021-04-17 10:00:07 +00:00
|
|
|
appOpts,
|
|
|
|
baseapp.SetPruning(pruningOpts),
|
|
|
|
baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(sdkserver.FlagMinGasPrices))),
|
|
|
|
baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(sdkserver.FlagHaltHeight))),
|
|
|
|
baseapp.SetHaltTime(cast.ToUint64(appOpts.Get(sdkserver.FlagHaltTime))),
|
|
|
|
baseapp.SetMinRetainBlocks(cast.ToUint64(appOpts.Get(sdkserver.FlagMinRetainBlocks))),
|
|
|
|
baseapp.SetInterBlockCache(cache),
|
|
|
|
baseapp.SetTrace(cast.ToBool(appOpts.Get(sdkserver.FlagTrace))),
|
|
|
|
baseapp.SetIndexEvents(cast.ToStringSlice(appOpts.Get(sdkserver.FlagIndexEvents))),
|
|
|
|
baseapp.SetSnapshotStore(snapshotStore),
|
|
|
|
baseapp.SetSnapshotInterval(cast.ToUint64(appOpts.Get(sdkserver.FlagStateSyncSnapshotInterval))),
|
|
|
|
baseapp.SetSnapshotKeepRecent(cast.ToUint32(appOpts.Get(sdkserver.FlagStateSyncSnapshotKeepRecent))),
|
|
|
|
)
|
2021-04-18 17:23:26 +00:00
|
|
|
|
|
|
|
return ethermintApp
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|
|
|
|
|
2021-04-18 17:23:26 +00:00
|
|
|
// createAppAndExport creates a new Ethermint app (optionally at a given height)
|
2021-04-17 10:00:07 +00:00
|
|
|
// and exports state.
|
2021-04-18 17:23:26 +00:00
|
|
|
func createAppAndExport(
|
2021-04-17 10:00:07 +00:00
|
|
|
logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailAllowedAddrs []string,
|
2021-04-18 17:23:26 +00:00
|
|
|
appOpts servertypes.AppOptions,
|
|
|
|
) (servertypes.ExportedApp, error) {
|
2021-06-04 13:45:37 +00:00
|
|
|
encCfg := encoding.MakeConfig(app.ModuleBasics) // Ideally, we would reuse the one created by NewRootCmd.
|
2021-04-18 17:23:26 +00:00
|
|
|
encCfg.Marshaler = codec.NewProtoCodec(encCfg.InterfaceRegistry)
|
2021-04-17 10:00:07 +00:00
|
|
|
var ethermintApp *app.EthermintApp
|
|
|
|
if height != -1 {
|
2021-04-18 17:23:26 +00:00
|
|
|
ethermintApp = app.NewEthermintApp(logger, db, traceStore, false, map[int64]bool{}, "", uint(1), encCfg, appOpts)
|
2021-04-17 10:00:07 +00:00
|
|
|
|
|
|
|
if err := ethermintApp.LoadHeight(height); err != nil {
|
|
|
|
return servertypes.ExportedApp{}, err
|
|
|
|
}
|
|
|
|
} else {
|
2021-04-18 17:23:26 +00:00
|
|
|
ethermintApp = app.NewEthermintApp(logger, db, traceStore, true, map[int64]bool{}, "", uint(1), encCfg, appOpts)
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ethermintApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs)
|
|
|
|
}
|