Skip to content
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

Schedule mainnet merge 🐼 #4409

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions packages/config/src/chainConfig/presets/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export const chainConfig: IChainConfig = {
PRESET_BASE: PresetName.mainnet,

// Transition
// TBD, 2**256-1 is a placeholder
TERMINAL_TOTAL_DIFFICULTY: BigInt("115792089237316195423570985008687907853269984665640564039457584007913129639935"),
// Estimated: Sept 15, 2022
TERMINAL_TOTAL_DIFFICULTY: BigInt("58750000000000000000000"),
TERMINAL_BLOCK_HASH: b("0x0000000000000000000000000000000000000000000000000000000000000000"),
TERMINAL_BLOCK_HASH_ACTIVATION_EPOCH: Infinity,

Expand All @@ -29,12 +29,12 @@ export const chainConfig: IChainConfig = {
// - These may be re-assigned to another fork-version later
// - Temporarily set to max uint64 value: 2**64 - 1

// Altair
// Altair - Oct 27, 2021, 10:56:23am UTC
ALTAIR_FORK_VERSION: b("0x01000000"),
ALTAIR_FORK_EPOCH: 74240, // Oct 27, 2021, 10:56:23am UTC
// Bellatrix
ALTAIR_FORK_EPOCH: 74240,
// Bellatrix - Sept 6, 2022, 11:34:47am UTC
BELLATRIX_FORK_VERSION: b("0x02000000"),
BELLATRIX_FORK_EPOCH: Infinity,
BELLATRIX_FORK_EPOCH: 144896,
// Sharding
SHARDING_FORK_VERSION: b("0x03000000"),
SHARDING_FORK_EPOCH: Infinity,
Expand Down