-
Notifications
You must be signed in to change notification settings - Fork 973
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e8e178
commit 3e356d0
Showing
30 changed files
with
1,064 additions
and
1,591 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,36 @@ | ||
# Mainnet preset - Electra | ||
|
||
# Gwei values | ||
# --------------------------------------------------------------- | ||
# 2**5 * 10**9 (= 32,000,000,000) Gwei | ||
MIN_ACTIVATION_BALANCE: 32000000000 | ||
# 2**11 * 10**9 (= 2,048,000,000,000) Gwei | ||
MAX_EFFECTIVE_BALANCE_ELECTRA: 2048000000000 | ||
|
||
# State list lengths | ||
# --------------------------------------------------------------- | ||
PENDING_BALANCE_DEPOSITS_LIMIT: 134217728 | ||
PENDING_PARTIAL_WITHDRAWALS_LIMIT: 134217728 | ||
PENDING_CONSOLIDATIONS_LIMIT: 262144 | ||
|
||
# Reward and penalty quotients | ||
# --------------------------------------------------------------- | ||
MIN_SLASHING_PENALTY_QUOTIENT_ELECTRA: 4096 | ||
WHISTLEBLOWER_REWARD_QUOTIENT_ELECTRA: 4096 | ||
|
||
# # Max operations per block | ||
# --------------------------------------------------------------- | ||
# `uint64(2**0)` (= 1) | ||
MAX_ATTESTER_SLASHINGS_ELECTRA: 1 | ||
# `uint64(2 * 3)` (= 8) | ||
MAX_ATTESTATIONS_ELECTRA: 8 | ||
MAX_CONSOLIDATIONS: 1 | ||
|
||
# Execution | ||
# --------------------------------------------------------------- | ||
# 2**13 (= 8192) receipts | ||
MAX_DEPOSIT_RECEIPTS_PER_PAYLOAD: 8192 | ||
# 2**4 (= 16) exits | ||
MAX_EXECUTION_LAYER_EXITS: 16 | ||
# 2**3 (= 8) partial withdrawals | ||
MAX_PARTIAL_WITHDRAWALS_PER_PAYLOAD: 8 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,38 @@ | ||
# Minimal preset - Electra | ||
|
||
# Gwei values | ||
# --------------------------------------------------------------- | ||
# 2**5 * 10**9 (= 32,000,000,000) Gwei | ||
MIN_ACTIVATION_BALANCE: 32000000000 | ||
# 2**11 * 10**9 (= 2,048,000,000,000) Gwei | ||
MAX_EFFECTIVE_BALANCE_ELECTRA: 2048000000000 | ||
|
||
# State list lengths | ||
# --------------------------------------------------------------- | ||
PENDING_BALANCE_DEPOSITS_LIMIT: 134217728 | ||
# [customized] smaller queue | ||
PENDING_PARTIAL_WITHDRAWALS_LIMIT: 64 | ||
# [customized] smaller queue | ||
PENDING_CONSOLIDATIONS_LIMIT: 64 | ||
|
||
# Reward and penalty quotients | ||
# --------------------------------------------------------------- | ||
MIN_SLASHING_PENALTY_QUOTIENT_ELECTRA: 4096 | ||
WHISTLEBLOWER_REWARD_QUOTIENT_ELECTRA: 4096 | ||
|
||
# # Max operations per block | ||
# --------------------------------------------------------------- | ||
# `uint64(2**0)` (= 1) | ||
MAX_ATTESTER_SLASHINGS_ELECTRA: 1 | ||
# `uint64(2 * 3)` (= 8) | ||
MAX_ATTESTATIONS_ELECTRA: 8 | ||
MAX_CONSOLIDATIONS: 1 | ||
|
||
# Execution | ||
# --------------------------------------------------------------- | ||
# [customized] | ||
MAX_DEPOSIT_RECEIPTS_PER_PAYLOAD: 4 | ||
# 2**4 (= 16) exits | ||
MAX_EXECUTION_LAYER_EXITS: 16 | ||
# [customized] 2**1 (= 2) | ||
MAX_PARTIAL_WITHDRAWALS_PER_PAYLOAD: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
DENEB = 'deneb' | ||
ELECTRA = 'electra' | ||
EIP7594 = 'eip7594' | ||
EIP7251 = 'eip7251' | ||
WHISK = 'whisk' | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.