Skip to content

Commit

Permalink
fix: finalize the brioche block
Browse files Browse the repository at this point in the history
  • Loading branch information
egonspace committed May 27, 2024
1 parent e2dddda commit 237f883
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,13 @@ var (
LondonBlock: big.NewInt(0),
PangyoBlock: big.NewInt(0),
ApplepieBlock: big.NewInt(20_476_911),
BriocheBlock: big.NewInt(53_557_371), // 24-07-01 00:00:00 (UTC) expected
BriocheBlock: big.NewInt(53_525_500), // target date: 24-07-01 00:00:00 (GMT+09)
Ethash: new(EthashConfig),
Brioche: &BriocheConfig{
BlockReward: big.NewInt(1e18),
FirstHalvingBlock: big.NewInt(53_557_371),
FirstHalvingBlock: big.NewInt(53_525_500),
HalvingPeriod: big.NewInt(63_115_200),
FinishRewardBlock: big.NewInt(2_000_000_000), // TODO fix last reward block
FinishRewardBlock: big.NewInt(2_467_714_000), // target date: 2101-01-01 00:00:00 (GMT+09)
HalvingTimes: 16,
HalvingRate: 50,
},
Expand All @@ -189,13 +189,13 @@ var (
LondonBlock: big.NewInt(0),
PangyoBlock: big.NewInt(10_000_000),
ApplepieBlock: big.NewInt(26_240_268),
BriocheBlock: big.NewInt(60_537_845), // TODO fix hardfork date
BriocheBlock: big.NewInt(59_414_700), // target date: 24-06-04 11:00:41 (GMT+09)
Ethash: new(EthashConfig),
Brioche: &BriocheConfig{
BlockReward: big.NewInt(1e18),
FirstHalvingBlock: big.NewInt(60_537_845),
FirstHalvingBlock: big.NewInt(59_414_700),
HalvingPeriod: big.NewInt(63_115_200),
FinishRewardBlock: big.NewInt(2_000_000_000), // TODO fix last reward block
FinishRewardBlock: big.NewInt(2_473_258_000), // target date: 2100-12-01 11:02:21 (GMT+09)
HalvingTimes: 16,
HalvingRate: 50,
},
Expand Down

0 comments on commit 237f883

Please sign in to comment.