Skip to content

Commit

Permalink
Add TDD values for Gnosis (#6451)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov authored Nov 15, 2022
1 parent 8b7925a commit a3aaceb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ For information on changes in released versions of Teku, see the [releases page]
- Changed the builder `is online\is offline` logs to `is available\is not available`
- Added `/eth/v1/beacon/states/{state_id}/randao` to beacon-api.
- Block timing tracking is now enabled by default. The `--Xmetrics-block-timing-tracking-enabled` option has been renamed to `--metrics-block-timing-tracking-enabled`.
- Updated TDD for Gnosis

### Bug Fixes
- Fix missing status filters (active, pending, exited, withdrawal) for the `/eth/v1/beacon/states/{state_id}/validators` endpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ CONFIG_NAME: 'gnosis'

# Transition
# ---------------------------------------------------------------
# TBD, 2**256-2**10 is a placeholder
TERMINAL_TOTAL_DIFFICULTY: 115792089237316195423570985008687907853269984665640564039457584007913129638912
# Estimated on Dec 5, 2022
TERMINAL_TOTAL_DIFFICULTY: 8626000000000000000000058750000000000000000000
# By default, don't use these params
TERMINAL_BLOCK_HASH: 0x0000000000000000000000000000000000000000000000000000000000000000
TERMINAL_BLOCK_HASH_ACTIVATION_EPOCH: 18446744073709551615
Expand Down Expand Up @@ -38,7 +38,7 @@ ALTAIR_FORK_VERSION: 0x01000064
ALTAIR_FORK_EPOCH: 512
# Merge
BELLATRIX_FORK_VERSION: 0x02000064
BELLATRIX_FORK_EPOCH: 18446744073709551615
BELLATRIX_FORK_EPOCH: 385536 # 2022-11-30T19:23:40.000Z
# Capella
CAPELLA_FORK_VERSION: 0x03000064
CAPELLA_FORK_EPOCH: 18446744073709551615
Expand Down Expand Up @@ -80,7 +80,8 @@ CHURN_LIMIT_QUOTIENT: 4096

# Fork choice
# ---------------------------------------------------------------
PROPOSER_SCORE_BOOST: 70
# 40%
PROPOSER_SCORE_BOOST: 40


# Deposit contract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

public class SpecFactoryTest {

private static final Set<String> NON_BELLATRIX_NETWORKS = Set.of("gnosis", "swift", "less-swift");
private static final Set<String> NON_BELLATRIX_NETWORKS = Set.of("swift", "less-swift");

@Test
public void defaultFactoryShouldScheduleAltairAndBellatrixForMainNet() {
Expand Down

0 comments on commit a3aaceb

Please sign in to comment.