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

Uses nimbus-eth2 24.3 stable release, joining Kaustinen Devnet (Verkle Readiness) #6273

Draft
wants to merge 1 commit into
base: verkle-kaustinen/capella
Choose a base branch
from
Draft
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
18 changes: 9 additions & 9 deletions beacon_chain/spec/datatypes/electra.nim
Original file line number Diff line number Diff line change
Expand Up @@ -549,16 +549,16 @@ type
# bls_to_execution_changes*:
# List[SignedBLSToExecutionChange, Limit MAX_BLS_TO_EXECUTION_CHANGES]

BeaconStateDiffPreSnapshot* = object
eth1_data_votes_recent*: seq[Eth1Data]
eth1_data_votes_len*: int
slot*: Slot
historical_summaries_len*: int
eth1_withdrawal_credential*: seq[bool]
# BeaconStateDiffPreSnapshot* = object
# eth1_data_votes_recent*: seq[Eth1Data]
# eth1_data_votes_len*: int
# slot*: Slot
# historical_summaries_len*: int
# eth1_withdrawal_credential*: seq[bool]

IndexedWithdrawalCredentials* = object
validator_index*: uint64
withdrawal_credentials*: Eth2Digest
# IndexedWithdrawalCredentials* = object
agnxsh marked this conversation as resolved.
Show resolved Hide resolved
# validator_index*: uint64
# withdrawal_credentials*: Eth2Digest

# BeaconStateDiff* = object
# # Small and/or static; always include
Expand Down
32 changes: 16 additions & 16 deletions beacon_chain/spec/forks.nim
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ type
altair.HashedBeaconState |
bellatrix.HashedBeaconState |
capella.HashedBeaconState |
deneb.HashedBeaconState #|
# electra.HashedBeaconState
agnxsh marked this conversation as resolved.
Show resolved Hide resolved
deneb.HashedBeaconState |
electra.HashedBeaconState

ForkedHashedBeaconState* = object
case kind*: ConsensusFork
Expand Down Expand Up @@ -117,24 +117,24 @@ type
altair.BeaconBlock |
bellatrix.BeaconBlock |
capella.BeaconBlock |
deneb.BeaconBlock #|
# electra.BeaconBlock
deneb.BeaconBlock |
electra.BeaconBlock

ForkySigVerifiedBeaconBlock* =
phase0.SigVerifiedBeaconBlock |
altair.SigVerifiedBeaconBlock |
bellatrix.SigVerifiedBeaconBlock |
capella.SigVerifiedBeaconBlock |
deneb.SigVerifiedBeaconBlock #|
# electra.SigVerifiedBeaconBlock
deneb.SigVerifiedBeaconBlock |
electra.SigVerifiedBeaconBlock

ForkyTrustedBeaconBlock* =
phase0.TrustedBeaconBlock |
altair.TrustedBeaconBlock |
bellatrix.TrustedBeaconBlock |
capella.TrustedBeaconBlock |
deneb.TrustedBeaconBlock #|
# electra.TrustedBeaconBlock
deneb.TrustedBeaconBlock |
electra.TrustedBeaconBlock

SomeForkyBeaconBlock* =
ForkyBeaconBlock |
Expand Down Expand Up @@ -189,8 +189,8 @@ type
altair.SignedBeaconBlock |
bellatrix.SignedBeaconBlock |
capella.SignedBeaconBlock |
deneb.SignedBeaconBlock #|
# electra.SignedBeaconBlock
deneb.SignedBeaconBlock |
electra.SignedBeaconBlock

ForkedSignedBeaconBlock* = object
case kind*: ConsensusFork
Expand Down Expand Up @@ -220,24 +220,24 @@ type
altair.SigVerifiedSignedBeaconBlock |
bellatrix.SigVerifiedSignedBeaconBlock |
capella.SigVerifiedSignedBeaconBlock |
deneb.SigVerifiedSignedBeaconBlock #|
# electra.SigVerifiedSignedBeaconBlock
deneb.SigVerifiedSignedBeaconBlock |
electra.SigVerifiedSignedBeaconBlock

ForkyMsgTrustedSignedBeaconBlock* =
phase0.MsgTrustedSignedBeaconBlock |
altair.MsgTrustedSignedBeaconBlock |
bellatrix.MsgTrustedSignedBeaconBlock |
capella.MsgTrustedSignedBeaconBlock |
deneb.MsgTrustedSignedBeaconBlock #|
# electra.MsgTrustedSignedBeaconBlock
deneb.MsgTrustedSignedBeaconBlock |
electra.MsgTrustedSignedBeaconBlock

ForkyTrustedSignedBeaconBlock* =
phase0.TrustedSignedBeaconBlock |
altair.TrustedSignedBeaconBlock |
bellatrix.TrustedSignedBeaconBlock |
capella.TrustedSignedBeaconBlock |
deneb.TrustedSignedBeaconBlock #|
# electra.TrustedSignedBeaconBlock
deneb.TrustedSignedBeaconBlock |
electra.TrustedSignedBeaconBlock

ForkedMsgTrustedSignedBeaconBlock* = object
case kind*: ConsensusFork
Expand Down
Loading