mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
common, params: update parameters of devnet
This commit is contained in:
parent
5bb54b910e
commit
28de3b36bf
4 changed files with 5 additions and 2 deletions
|
|
@ -25,11 +25,12 @@ var DevnetConstant = constant{
|
|||
mergeBlock: big.NewInt(0),
|
||||
shanghaiBlock: big.NewInt(0),
|
||||
blockNumberGas50x: big.NewInt(0),
|
||||
TIPV2SwitchBlock: big.NewInt(1800),
|
||||
TIPV2SwitchBlock: big.NewInt(0),
|
||||
tipXDCXMinerDisable: big.NewInt(0),
|
||||
tipXDCXReceiverDisable: big.NewInt(0),
|
||||
eip1559Block: big.NewInt(0),
|
||||
cancunBlock: big.NewInt(1702800),
|
||||
tipUpgradeReward: big.NewInt(1773000),
|
||||
|
||||
trc21IssuerSMCTestNet: HexToAddress("0x0E2C88753131CE01c7551B726b28BFD04e44003F"),
|
||||
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ var MaintnetConstant = constant{
|
|||
tipXDCXReceiverDisable: big.NewInt(80370900), // Target 2nd Oct 2024, safer to release after disable miner
|
||||
eip1559Block: big.NewInt(9999999999),
|
||||
cancunBlock: big.NewInt(9999999999),
|
||||
tipUpgradeReward: big.NewInt(9999999999),
|
||||
|
||||
trc21IssuerSMCTestNet: HexToAddress("0x0E2C88753131CE01c7551B726b28BFD04e44003F"),
|
||||
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ var TestnetConstant = constant{
|
|||
tipXDCXReceiverDisable: big.NewInt(66825000), // Target 26 Aug 2024
|
||||
eip1559Block: big.NewInt(71550000), // Target 14th Feb 2025
|
||||
cancunBlock: big.NewInt(9999999999),
|
||||
tipUpgradeReward: big.NewInt(9999999999),
|
||||
|
||||
trc21IssuerSMCTestNet: HexToAddress("0x0E2C88753131CE01c7551B726b28BFD04e44003F"),
|
||||
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ var (
|
|||
XDPoS: &XDPoSConfig{
|
||||
Period: 2,
|
||||
Epoch: 900,
|
||||
Reward: 5000,
|
||||
Reward: 10,
|
||||
RewardCheckpoint: 900,
|
||||
Gap: 450,
|
||||
FoudationWalletAddr: common.HexToAddress("0xde5b54e8e7b585153add32f472e8d545e5d42a82"),
|
||||
|
|
|
|||
Loading…
Reference in a new issue