2018-07-19 21:16:48 +00:00
|
|
|
package main
|
|
|
|
|
2019-07-08 19:26:33 +00:00
|
|
|
import (
|
2019-07-12 17:13:15 +00:00
|
|
|
"encoding/json"
|
2019-11-02 17:13:31 +00:00
|
|
|
"fmt"
|
2019-07-12 17:13:15 +00:00
|
|
|
"io"
|
2019-11-02 17:13:31 +00:00
|
|
|
"math/big"
|
2019-07-12 17:13:15 +00:00
|
|
|
|
2019-09-26 15:50:55 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
2019-11-02 17:13:31 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
2019-07-08 19:26:33 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/server"
|
2019-09-26 15:50:55 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/store"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2019-11-04 20:45:02 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
|
|
genutil "github.com/cosmos/cosmos-sdk/x/genutil"
|
2019-09-26 15:50:55 +00:00
|
|
|
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
|
2019-11-05 16:50:55 +00:00
|
|
|
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
|
2019-07-08 19:26:33 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/x/staking"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2019-09-26 15:50:55 +00:00
|
|
|
"github.com/spf13/viper"
|
2019-07-08 19:26:33 +00:00
|
|
|
|
2019-11-04 20:45:02 +00:00
|
|
|
"github.com/cosmos/ethermint/app"
|
2019-07-08 19:26:33 +00:00
|
|
|
emintapp "github.com/cosmos/ethermint/app"
|
2019-07-12 17:13:15 +00:00
|
|
|
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
2019-09-26 15:50:55 +00:00
|
|
|
"github.com/tendermint/tendermint/libs/cli"
|
2019-07-12 17:13:15 +00:00
|
|
|
tmlog "github.com/tendermint/tendermint/libs/log"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
2019-09-26 15:50:55 +00:00
|
|
|
dbm "github.com/tendermint/tm-db"
|
2019-07-08 19:26:33 +00:00
|
|
|
)
|
|
|
|
|
2018-07-19 21:16:48 +00:00
|
|
|
func main() {
|
2019-07-08 19:26:33 +00:00
|
|
|
cobra.EnableCommandSorting = false
|
|
|
|
|
|
|
|
cdc := emintapp.MakeCodec()
|
|
|
|
|
2019-11-04 20:45:02 +00:00
|
|
|
genutil.ModuleCdc = cdc
|
2019-11-05 16:50:55 +00:00
|
|
|
genutiltypes.ModuleCdc = cdc
|
2019-11-04 20:45:02 +00:00
|
|
|
authtypes.ModuleCdc = cdc
|
|
|
|
|
2019-07-08 19:26:33 +00:00
|
|
|
config := sdk.GetConfig()
|
|
|
|
config.SetBech32PrefixForAccount(sdk.Bech32PrefixAccAddr, sdk.Bech32PrefixAccPub)
|
|
|
|
config.SetBech32PrefixForValidator(sdk.Bech32PrefixValAddr, sdk.Bech32PrefixValPub)
|
|
|
|
config.SetBech32PrefixForConsensusNode(sdk.Bech32PrefixConsAddr, sdk.Bech32PrefixConsPub)
|
|
|
|
config.Seal()
|
|
|
|
|
|
|
|
ctx := server.NewDefaultContext()
|
|
|
|
|
|
|
|
rootCmd := &cobra.Command{
|
|
|
|
Use: "emintd",
|
|
|
|
Short: "Ethermint App Daemon (server)",
|
|
|
|
PersistentPreRunE: server.PersistentPreRunEFn(ctx),
|
|
|
|
}
|
|
|
|
// CLI commands to initialize the chain
|
|
|
|
rootCmd.AddCommand(
|
2019-11-02 17:13:31 +00:00
|
|
|
withChainIDValidation(genutilcli.InitCmd(ctx, cdc, emintapp.ModuleBasics, emintapp.DefaultNodeHome)),
|
2019-11-04 20:45:02 +00:00
|
|
|
genutilcli.CollectGenTxsCmd(ctx, cdc, auth.GenesisAccountIterator{}, emintapp.DefaultNodeHome),
|
2019-11-05 16:50:55 +00:00
|
|
|
GenTxCmd(
|
2019-11-04 20:45:02 +00:00
|
|
|
ctx, cdc, emintapp.ModuleBasics, staking.AppModuleBasic{}, auth.GenesisAccountIterator{}, emintapp.DefaultNodeHome, emintapp.DefaultCLIHome,
|
|
|
|
),
|
2019-07-08 19:26:33 +00:00
|
|
|
genutilcli.ValidateGenesisCmd(ctx, cdc, emintapp.ModuleBasics),
|
|
|
|
|
|
|
|
// AddGenesisAccountCmd allows users to add accounts to the genesis file
|
2019-11-04 20:45:02 +00:00
|
|
|
AddGenesisAccountCmd(ctx, cdc, app.DefaultNodeHome, app.DefaultCLIHome),
|
2019-07-08 19:26:33 +00:00
|
|
|
)
|
|
|
|
|
2019-07-12 17:13:15 +00:00
|
|
|
// Tendermint node base commands
|
|
|
|
server.AddCommands(ctx, cdc, rootCmd, newApp, exportAppStateAndTMValidators)
|
2019-07-08 19:26:33 +00:00
|
|
|
|
|
|
|
// prepare and add flags
|
|
|
|
executor := cli.PrepareBaseCmd(rootCmd, "EM", emintapp.DefaultNodeHome)
|
|
|
|
err := executor.Execute()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-07-19 21:16:48 +00:00
|
|
|
}
|
2019-07-08 19:26:33 +00:00
|
|
|
|
2019-07-12 17:13:15 +00:00
|
|
|
func newApp(logger tmlog.Logger, db dbm.DB, traceStore io.Writer) abci.Application {
|
2019-09-26 15:50:55 +00:00
|
|
|
return emintapp.NewEthermintApp(logger, db, true, 0,
|
|
|
|
baseapp.SetPruning(store.NewPruningOptionsFromString(viper.GetString("pruning"))))
|
2019-07-12 17:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func exportAppStateAndTMValidators(
|
|
|
|
logger tmlog.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailWhiteList []string,
|
|
|
|
) (json.RawMessage, []tmtypes.GenesisValidator, error) {
|
|
|
|
|
|
|
|
if height != -1 {
|
|
|
|
emintApp := emintapp.NewEthermintApp(logger, db, true, 0)
|
|
|
|
err := emintApp.LoadHeight(height)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return emintApp.ExportAppStateAndValidators(forZeroHeight, jailWhiteList)
|
|
|
|
}
|
|
|
|
|
|
|
|
emintApp := emintapp.NewEthermintApp(logger, db, true, 0)
|
|
|
|
|
|
|
|
return emintApp.ExportAppStateAndValidators(forZeroHeight, jailWhiteList)
|
|
|
|
}
|
2019-11-02 17:13:31 +00:00
|
|
|
|
|
|
|
// Wraps cobra command with a RunE function with integer chain-id verification
|
|
|
|
func withChainIDValidation(baseCmd *cobra.Command) *cobra.Command {
|
|
|
|
// Copy base run command to be used after chain verification
|
|
|
|
baseRunE := baseCmd.RunE
|
|
|
|
|
|
|
|
// Function to replace command's RunE function
|
|
|
|
chainIDVerify := func(cmd *cobra.Command, args []string) error {
|
|
|
|
chainIDFlag := viper.GetString(client.FlagChainID)
|
|
|
|
|
|
|
|
// Verify that the chain-id entered is a base 10 integer
|
|
|
|
_, ok := new(big.Int).SetString(chainIDFlag, 10)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(
|
|
|
|
fmt.Sprintf("Invalid chainID: %s, must be base-10 integer format", chainIDFlag))
|
|
|
|
}
|
|
|
|
|
|
|
|
return baseRunE(cmd, args)
|
|
|
|
}
|
|
|
|
|
|
|
|
baseCmd.RunE = chainIDVerify
|
|
|
|
return baseCmd
|
|
|
|
}
|