aboutsummaryrefslogtreecommitdiffstats
path: root/params
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-20 16:49:46 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:50 +0800
commit0a3d913bf68dd165337ac20977b8379fd1acf469 (patch)
treeee1d975bbc11593ca25c81cef81c86f3f4de98fe /params
parentdca561583b7657dd65b39e0a196cb026d608ba11 (diff)
downloaddexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar.gz
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar.bz2
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar.lz
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar.xz
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.tar.zst
dexon-0a3d913bf68dd165337ac20977b8379fd1acf469.zip
core: populate genesisAlloc in source code with DEXON genesis data
Diffstat (limited to 'params')
-rw-r--r--params/config.go53
1 files changed, 39 insertions, 14 deletions
diff --git a/params/config.go b/params/config.go
index fe21e101d..564998fef 100644
--- a/params/config.go
+++ b/params/config.go
@@ -35,18 +35,32 @@ var (
var (
// MainnetChainConfig is the chain parameters to run a node on the main network.
MainnetChainConfig = &ChainConfig{
- ChainID: big.NewInt(1),
- HomesteadBlock: big.NewInt(1150000),
- DAOForkBlock: big.NewInt(1920000),
+ ChainID: big.NewInt(237),
+ HomesteadBlock: big.NewInt(0),
+ DAOForkBlock: big.NewInt(0),
DAOForkSupport: true,
- EIP150Block: big.NewInt(2463000),
- EIP150Hash: common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"),
- EIP155Block: big.NewInt(2675000),
- EIP158Block: big.NewInt(2675000),
- ByzantiumBlock: big.NewInt(4370000),
- ConstantinopleBlock: big.NewInt(7280000),
- PetersburgBlock: big.NewInt(7280000),
- Dexcon: &DexconConfig{},
+ EIP150Block: big.NewInt(0),
+ EIP150Hash: common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000000"),
+ EIP155Block: big.NewInt(0),
+ EIP158Block: big.NewInt(0),
+ ByzantiumBlock: big.NewInt(0),
+ ConstantinopleBlock: big.NewInt(0),
+ PetersburgBlock: big.NewInt(0),
+ Dexcon: &DexconConfig{
+ GenesisCRSText: "In DEXON, we trust.",
+ Owner: common.HexToAddress("7C3c31B19395A5e2627F921Cc2802560B71f1caB"),
+ BlockReward: big.NewInt(1e18),
+ NumChains: 4,
+ LambdaBA: 250,
+ LambdaDKG: 2500,
+ K: 0,
+ PhiRatio: 667000,
+ NotarySetSize: 4,
+ DKGSetSize: 4,
+ RoundInterval: 99999999999,
+ MinBlockInterval: 900,
+ MaxBlockInterval: 1100,
+ },
}
// MainnetTrustedCheckpoint contains the light client trusted checkpoint for the main network.
@@ -60,7 +74,7 @@ var (
// TestnetChainConfig contains the chain parameters to run a node on the Ropsten test network.
TestnetChainConfig = &ChainConfig{
- ChainID: big.NewInt(3),
+ ChainID: big.NewInt(238),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: true,
@@ -71,7 +85,19 @@ var (
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
Dexcon: &DexconConfig{
- BlockReward: new(big.Int).SetInt64(5e+18),
+ GenesisCRSText: "In DEXON, we trust.",
+ Owner: common.HexToAddress("7C3c31B19395A5e2627F921Cc2802560B71f1caB"),
+ BlockReward: big.NewInt(1e18),
+ NumChains: 4,
+ LambdaBA: 250,
+ LambdaDKG: 2500,
+ K: 0,
+ PhiRatio: 667000,
+ NotarySetSize: 4,
+ DKGSetSize: 4,
+ RoundInterval: 99999999999,
+ MinBlockInterval: 900,
+ MaxBlockInterval: 1100,
},
}
@@ -91,7 +117,6 @@ var (
DAOForkBlock: nil,
DAOForkSupport: true,
EIP150Block: big.NewInt(2),
- EIP150Hash: common.HexToHash("0x9b095b36c15eaf13044373aef8ee0bd3a382a5abb92e402afa44b8249c3a90e9"),
EIP155Block: big.NewInt(3),
EIP158Block: big.NewInt(3),
ByzantiumBlock: big.NewInt(1035301),