Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 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 @@ -34,7 +34,7 @@ export const chainConfig: IChainConfig = {
ALTAIR_FORK_EPOCH: 74240, // Oct 27, 2021, 10:56:23am UTC
// Bellatrix
BELLATRIX_FORK_VERSION: b("0x02000000"),
BELLATRIX_FORK_EPOCH: Infinity,
BELLATRIX_FORK_EPOCH: 144896, // Sept 6, 2022, 11:34:47am UTC
// Sharding
SHARDING_FORK_VERSION: b("0x03000000"),
SHARDING_FORK_EPOCH: Infinity,
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/chainConfig/presets/minimal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const chainConfig: IChainConfig = {
PRESET_BASE: PresetName.minimal,

// Transition
// TBD, 2**256-1 is a placeholder
// 2**256-2**10 for testing minimal network
TERMINAL_TOTAL_DIFFICULTY: BigInt("115792089237316195423570985008687907853269984665640564039457584007913129639935"),
TERMINAL_BLOCK_HASH: b("0x0000000000000000000000000000000000000000000000000000000000000000"),
TERMINAL_BLOCK_HASH_ACTIVATION_EPOCH: Infinity,
Expand Down