-
Notifications
You must be signed in to change notification settings - Fork 40
feat: initial electra support #1446
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
Closed
Closed
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
e22b626
Setting up electra in version files
rodrigo-o 0dee18e
Avoid skipping electra test in the runners
rodrigo-o a8b13ec
Updated native libraries to be up-to-date with latest ssz releases
rodrigo-o 51a5ee4
Updated config/preset to support electra additions
rodrigo-o aaa5500
feat: electra container and ssz support (#1400)
rodrigo-o f84cade
Merge branch 'main' into electra-support
rodrigo-o e611684
feat: electra slashing, proposer_index & compute_sync_committees chan…
LeanSerra f21ee36
Merge branch 'main' into electra-support
rodrigo-o 439b652
fix: kurtosis in electra support branch (#1421)
rodrigo-o 71dee9d
feat: electra get_attesting_indices changes + helper functions from p…
LeanSerra bc6579b
refactor: move committee_attesters calculation to own function (#1425)
LeanSerra 0d40248
docs: add an electra implementation gap doc (#1423)
rodrigo-o 68dec8f
feat: electra process_registry_updates & slash_validators changes (#1…
LeanSerra be02708
fix: skipped spec tests in electra (#1427)
rodrigo-o bcc7782
fix: new ssz fixes for the static spec-test (#1430)
rodrigo-o cb9ffb4
fix: outstanding ssz issues after #1430 (#1432)
rodrigo-o b19639b
fix: fixing the CI updating ubuntu and go (#1433)
rodrigo-o c4bec8f
feat: implement electra deposits (#1424)
LeanSerra 08b8365
docs: `electra-gap.md` enhancement with roadmap and current status (#…
rodrigo-o e5ef002
feat: electra process_operations changes (#1426)
LeanSerra cef653a
Merge branch 'main' into electra-support
rodrigo-o b65087b
updated electra-gap.md doc
rodrigo-o aae93fb
feat: electra consolidations (#1428)
LeanSerra f04ecaa
chore: disable assertoor failing checks (#1447)
rodrigo-o 911af45
feat: electra withdrawals (#1431)
LeanSerra e56e7d4
feat: electra `MAX_BLOBS_PER_BLOCK_ELECTRA` (#1438)
LeanSerra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 +1 @@ | ||
deneb | ||
electra |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 +1 @@ | ||
v1.4.0 | ||
v1.5.0-beta.3 |
This file contains hidden or 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,5 +1,5 @@ | ||
erlang 26.2 | ||
elixir 1.16.2-otp-26 | ||
golang 1.22.12 | ||
golang 1.24.2 | ||
rust 1.81.0 | ||
protoc 30.2 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# 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 | ||
# --------------------------------------------------------------- | ||
# `uint64(2**27)` (= 134,217,728) | ||
PENDING_DEPOSITS_LIMIT: 134217728 | ||
# `uint64(2**27)` (= 134,217,728) | ||
PENDING_PARTIAL_WITHDRAWALS_LIMIT: 134217728 | ||
# `uint64(2**18)` (= 262,144) | ||
PENDING_CONSOLIDATIONS_LIMIT: 262144 | ||
|
||
# Reward and penalty quotients | ||
# --------------------------------------------------------------- | ||
# `uint64(2**12)` (= 4,096) | ||
MIN_SLASHING_PENALTY_QUOTIENT_ELECTRA: 4096 | ||
# `uint64(2**12)` (= 4,096) | ||
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 | ||
# `uint64(2**1)` (= 2) | ||
MAX_CONSOLIDATION_REQUESTS_PER_PAYLOAD: 2 | ||
|
||
# Execution | ||
# --------------------------------------------------------------- | ||
# 2**13 (= 8192) deposit requests | ||
MAX_DEPOSIT_REQUESTS_PER_PAYLOAD: 8192 | ||
# 2**4 (= 16) withdrawal requests | ||
MAX_WITHDRAWAL_REQUESTS_PER_PAYLOAD: 16 | ||
|
||
# Withdrawals processing | ||
# --------------------------------------------------------------- | ||
# 2**3 ( = 8) pending withdrawals | ||
MAX_PENDING_PARTIALS_PER_WITHDRAWALS_SWEEP: 8 | ||
|
||
# Pending deposits processing | ||
# --------------------------------------------------------------- | ||
# 2**4 ( = 4) pending deposits | ||
MAX_PENDING_DEPOSITS_PER_EPOCH: 16 |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This needs to point to
main
before merge