-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add mainnet fork epoch #13601
add mainnet fork epoch #13601
Conversation
34f6f8e
to
0eee0b1
Compare
Tests are failing since we use the consensus_specs repo to verify our configs are correct and we've only updated eth-networks |
Waiting for ethereum/consensus-specs#3598 |
@@ -23,7 +23,10 @@ const ( | |||
mainnetAltairForkEpoch = 74240 // Oct 27, 2021, 10:56:23am UTC | |||
// Bellatrix Fork Epoch for mainnet config. | |||
mainnetBellatrixForkEpoch = 144896 // Sept 6, 2022, 11:34:47am UTC | |||
mainnetDenebForkEpoch = math.MaxUint64 | |||
// Capella Fork Epoch for mainnet config. | |||
mainnetCapellaForkEpoch = 194048 // April 12, 2023, 22:27:35 UTC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That being said, for consistency or at least appearing the same as the above comments, it should be:
mainnetCapellaForkEpoch = 194048 // April 12, 2023, 22:27:35 UTC | |
mainnetCapellaForkEpoch = 194048 // Apr 12, 2023, 22:27:35pm UTC |
// Capella Fork Epoch for mainnet config. | ||
mainnetCapellaForkEpoch = 194048 // April 12, 2023, 22:27:35 UTC | ||
// Deneb Fork Epoch for mainnet config. | ||
mainnetDenebForkEpoch = 269568 // March 13, 2024, 13:55:35 UTC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here:
mainnetDenebForkEpoch = 269568 // March 13, 2024, 13:55:35 UTC | |
mainnetDenebForkEpoch = 269568 // Mar 13, 2024, 13:55:35pm UTC |
1efc5b0
to
8991773
Compare
Blobs are coming.
ethereum/consensus-specs#3597