Skip to content

Commit

Permalink
ensure mantle sepolia metatx & eth deposit upgrade time
Browse files Browse the repository at this point in the history
Signed-off-by: pandainzoo <[email protected]>
  • Loading branch information
pandainzoo committed Jul 3, 2024
1 parent 084a975 commit f92c2d6
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions core/mantle_upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,28 @@ var (
BaseFeeTime: u64Ptr(0),
BVMETHMintUpgradeTime: u64Ptr(0),
MetaTxV2UpgradeTime: u64Ptr(0),
MetaTxV3UpgradeTime: u64Ptr(0), //TODO set upgrade timestamp
MetaTxV3UpgradeTime: nil, //TODO set upgrade timestamp
}

MantleSepoliaUpgradeConfig = MantleUpgradeChainConfig{
ChainID: params.MantleSepoliaChainId,
BaseFeeTime: u64Ptr(1_704_891_600),
BVMETHMintUpgradeTime: nil, //TODO set upgrade timestamp
MetaTxV2UpgradeTime: nil, //TODO set upgrade timestamp
MetaTxV3UpgradeTime: nil, //TODO set upgrade timestamp
BVMETHMintUpgradeTime: u64Ptr(1_720_594_800),
MetaTxV2UpgradeTime: u64Ptr(1_720_594_800),
MetaTxV3UpgradeTime: u64Ptr(1_720_594_800),
}
MantleSepoliaQA3UpgradeConfig = MantleUpgradeChainConfig{
ChainID: params.MantleSepoliaQA3ChainId,
BaseFeeTime: u64Ptr(0),
BVMETHMintUpgradeTime: u64Ptr(0),
MetaTxV2UpgradeTime: u64Ptr(0),
MetaTxV3UpgradeTime: u64Ptr(1717689600),
MetaTxV3UpgradeTime: u64Ptr(1_717_689_600),
}
MantleSepoliaQA9UpgradeConfig = MantleUpgradeChainConfig{
ChainID: params.MantleSepoliaQA9ChainId,
BaseFeeTime: u64Ptr(0),
BVMETHMintUpgradeTime: u64Ptr(0),
MetaTxV2UpgradeTime: u64Ptr(0),
MetaTxV3UpgradeTime: u64Ptr(1716962400),
MetaTxV3UpgradeTime: u64Ptr(1_716_962_400),
}
MantleLocalUpgradeConfig = MantleUpgradeChainConfig{
ChainID: params.MantleLocalChainId,
Expand Down

0 comments on commit f92c2d6

Please sign in to comment.