mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 13:21:37 +00:00
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package common
|
|
|
|
import (
|
|
"math"
|
|
"math/big"
|
|
)
|
|
|
|
var localConstant = constant{
|
|
chainID: 5151,
|
|
maxMasternodesV2: 108,
|
|
denylistHFNumber: 0,
|
|
|
|
tip2019Block: big.NewInt(0),
|
|
tipSigning: big.NewInt(0),
|
|
tipRandomize: big.NewInt(0),
|
|
tipNoHalvingMNReward: big.NewInt(0),
|
|
tipXDCX: big.NewInt(0),
|
|
tipXDCXLending: big.NewInt(0),
|
|
tipXDCXCancellationFee: big.NewInt(0),
|
|
tipTRC21Fee: big.NewInt(0),
|
|
tipIncreaseMasternodes: big.NewInt(0),
|
|
berlinBlock: big.NewInt(0),
|
|
londonBlock: big.NewInt(0),
|
|
mergeBlock: big.NewInt(0),
|
|
shanghaiBlock: big.NewInt(0),
|
|
blockNumberGas50x: big.NewInt(0),
|
|
TIPV2SwitchBlock: big.NewInt(0),
|
|
tipXDCXMinerDisable: big.NewInt(0),
|
|
tipXDCXReceiverDisable: big.NewInt(0),
|
|
eip1559Block: big.NewInt(0),
|
|
cancunBlock: big.NewInt(0),
|
|
pragueBlock: big.NewInt(0),
|
|
osakaBlock: big.NewInt(0),
|
|
dynamicGasLimitBlock: big.NewInt(0),
|
|
tipUpgradeReward: big.NewInt(math.MaxInt64),
|
|
tipUpgradePenalty: big.NewInt(math.MaxInt64),
|
|
tipEpochHalving: big.NewInt(math.MaxInt64),
|
|
|
|
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
|
xdcxListingSMC: HexToAddress("0xDE34dD0f536170993E8CFF639DdFfCF1A85D3E53"),
|
|
relayerRegistrationSMC: HexToAddress("0x16c63b79f9C8784168103C0b74E6A59EC2de4a02"),
|
|
lendingRegistrationSMC: HexToAddress("0x7d761afd7ff65a79e4173897594a194e3c506e57"),
|
|
|
|
ignoreSignerCheckBlockArray: map[uint64]struct{}{},
|
|
|
|
denylist: map[Address]struct{}{},
|
|
}
|