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"
|
|
|
|
"io"
|
|
|
|
|
2019-07-08 19:26:33 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/genaccounts"
|
|
|
|
genaccscli "github.com/cosmos/cosmos-sdk/x/genaccounts/client/cli"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/staking"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/tendermint/tendermint/libs/cli"
|
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
|
|
|
|
emintapp "github.com/cosmos/ethermint/app"
|
2019-07-12 17:13:15 +00:00
|
|
|
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
2019-08-15 16:26:40 +00:00
|
|
|
dbm "github.com/tendermint/tm-db"
|
2019-07-12 17:13:15 +00:00
|
|
|
tmlog "github.com/tendermint/tendermint/libs/log"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
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()
|
|
|
|
|
|
|
|
config := sdk.GetConfig()
|
2019-08-11 14:42:46 +00:00
|
|
|
// TODO: Remove or change prefix if usable to generate Ethereum address
|
2019-07-08 19:26:33 +00:00
|
|
|
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(
|
|
|
|
genutilcli.InitCmd(ctx, cdc, emintapp.ModuleBasics, emintapp.DefaultNodeHome),
|
|
|
|
genutilcli.CollectGenTxsCmd(ctx, cdc, genaccounts.AppModuleBasic{}, emintapp.DefaultNodeHome),
|
|
|
|
genutilcli.GenTxCmd(ctx, cdc, emintapp.ModuleBasics, staking.AppModuleBasic{}, genaccounts.AppModuleBasic{}, emintapp.DefaultNodeHome, emintapp.DefaultCLIHome),
|
|
|
|
genutilcli.ValidateGenesisCmd(ctx, cdc, emintapp.ModuleBasics),
|
|
|
|
|
|
|
|
// AddGenesisAccountCmd allows users to add accounts to the genesis file
|
|
|
|
genaccscli.AddGenesisAccountCmd(ctx, cdc, emintapp.DefaultNodeHome, emintapp.DefaultCLIHome),
|
|
|
|
)
|
|
|
|
|
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 {
|
|
|
|
return emintapp.NewEthermintApp(logger, db, true, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|