2020-04-01 18:49:21 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
2021-04-17 10:00:07 +00:00
|
|
|
"encoding/json"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
2021-06-22 10:49:18 +00:00
|
|
|
"github.com/tharsis/ethermint/encoding"
|
2021-04-17 10:00:07 +00:00
|
|
|
|
2020-04-01 18:49:21 +00:00
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
2021-04-17 10:00:07 +00:00
|
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
2020-04-01 18:49:21 +00:00
|
|
|
dbm "github.com/tendermint/tm-db"
|
|
|
|
)
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
// DefaultConsensusParams defines the default Tendermint consensus params used in
|
|
|
|
// EthermintApp testing.
|
|
|
|
var DefaultConsensusParams = &abci.ConsensusParams{
|
|
|
|
Block: &abci.BlockParams{
|
|
|
|
MaxBytes: 200000,
|
|
|
|
MaxGas: -1, // no limit
|
|
|
|
},
|
|
|
|
Evidence: &tmproto.EvidenceParams{
|
|
|
|
MaxAgeNumBlocks: 302400,
|
|
|
|
MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration
|
|
|
|
MaxBytes: 10000,
|
|
|
|
},
|
|
|
|
Validator: &tmproto.ValidatorParams{
|
|
|
|
PubKeyTypes: []string{
|
|
|
|
tmtypes.ABCIPubKeyTypeEd25519,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-04-01 18:49:21 +00:00
|
|
|
// Setup initializes a new EthermintApp. A Nop logger is set in EthermintApp.
|
|
|
|
func Setup(isCheckTx bool) *EthermintApp {
|
|
|
|
db := dbm.NewMemDB()
|
2021-06-04 13:14:45 +00:00
|
|
|
app := NewEthermintApp(log.NewNopLogger(), db, nil, true, map[int64]bool{}, DefaultNodeHome, 5, encoding.MakeConfig(ModuleBasics), simapp.EmptyAppOptions{})
|
2020-04-01 18:49:21 +00:00
|
|
|
if !isCheckTx {
|
|
|
|
// init chain must be called to stop deliverState from being nil
|
2020-04-17 22:32:01 +00:00
|
|
|
genesisState := NewDefaultGenesisState()
|
2021-04-17 10:00:07 +00:00
|
|
|
stateBytes, err := json.MarshalIndent(genesisState, "", " ")
|
2020-04-01 18:49:21 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the chain
|
|
|
|
app.InitChain(
|
|
|
|
abci.RequestInitChain{
|
2021-05-31 09:05:32 +00:00
|
|
|
ChainId: "ethermint-1",
|
2021-04-17 10:00:07 +00:00
|
|
|
Validators: []abci.ValidatorUpdate{},
|
|
|
|
ConsensusParams: DefaultConsensusParams,
|
|
|
|
AppStateBytes: stateBytes,
|
2020-04-01 18:49:21 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return app
|
|
|
|
}
|