From aa40ccd05d8eec27519c2bc69231172191cd290b Mon Sep 17 00:00:00 2001 From: Ellaismer Date: Tue, 27 Mar 2018 02:52:11 -0400 Subject: [PATCH] Add Ellaism chain config (without ECIP1017 and bomb removal yet) --- params/config.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/params/config.go b/params/config.go index dc02c7ca37..b578ccdc76 100644 --- a/params/config.go +++ b/params/config.go @@ -44,6 +44,21 @@ var ( Ethash: new(EthashConfig), } + // EllaismChainConfig is the chain parameters to run a node on the Ellaism main network. + EllaismChainConfig = &ChainConfig{ + ChainId: big.NewInt(64), + HomesteadBlock: big.NewInt(0), + DAOForkBlock: nil, + DAOForkSupport: true, + EIP150Block: big.NewInt(0), + EIP150Hash: common.HexToHash("0x4d7df65052bb21264d6ad2d6fe2d5578a36be12f71bf8d0559b0c15c4dc539b5"), + EIP155Block: big.NewInt(0), + EIP158Block: big.NewInt(0x7fffffffffffffff), + ByzantiumBlock: big.NewInt(0x7fffffffffffffff), + ConstantinopleBlock: nil, + Ethash: new(EthashConfig), + } + // TestnetChainConfig contains the chain parameters to run a node on the Ropsten test network. TestnetChainConfig = &ChainConfig{ ChainId: big.NewInt(3),