Note: This document is a work-in-progress for researchers and implementers.
This document describes the process of Fulu upgrade.
Warning: this configuration is not definitive.
| Name | Value |
|---|---|
FULU_FORK_VERSION |
Version('0x06000000') |
FULU_FORK_EPOCH |
Epoch(18446744073709551615) TBD |
def compute_fork_version(epoch: Epoch) -> Version:
"""
Return the fork version at the given ``epoch``.
"""
if epoch >= FULU_FORK_EPOCH:
return FULU_FORK_VERSION
if epoch >= ELECTRA_FORK_EPOCH:
return ELECTRA_FORK_VERSION
if epoch >= DENEB_FORK_EPOCH:
return DENEB_FORK_VERSION
if epoch >= CAPELLA_FORK_EPOCH:
return CAPELLA_FORK_VERSION
if epoch >= BELLATRIX_FORK_EPOCH:
return BELLATRIX_FORK_VERSION
if epoch >= ALTAIR_FORK_EPOCH:
return ALTAIR_FORK_VERSION
return GENESIS_FORK_VERSIONdef initialize_proposer_lookahead(
state: electra.BeaconState,
) -> Vector[ValidatorIndex, (MIN_SEED_LOOKAHEAD + 1) * SLOTS_PER_EPOCH]:
"""
Return the proposer indices for the full available lookahead starting from current epoch.
Used to initialize the ``proposer_lookahead`` field in the beacon state at genesis and after forks.
"""
current_epoch = get_current_epoch(state)
lookahead = []
for i in range(MIN_SEED_LOOKAHEAD + 1):
lookahead.extend(get_beacon_proposer_indices(state, Epoch(current_epoch + i)))
return lookaheadThe fork is triggered at epoch FULU_FORK_EPOCH.
Note that for the pure Fulu networks, we don't apply upgrade_to_fulu since it
starts with Fulu version logic.
If state.slot % SLOTS_PER_EPOCH == 0 and
compute_epoch_at_slot(state.slot) == FULU_FORK_EPOCH, an irregular state
change is made to upgrade to Fulu.
def upgrade_to_fulu(pre: electra.BeaconState) -> BeaconState:
epoch = electra.get_current_epoch(pre)
post = BeaconState(
genesis_time=pre.genesis_time,
genesis_validators_root=pre.genesis_validators_root,
slot=pre.slot,
fork=Fork(
previous_version=pre.fork.current_version,
# [Modified in Fulu]
current_version=FULU_FORK_VERSION,
epoch=epoch,
),
latest_block_header=pre.latest_block_header,
block_roots=pre.block_roots,
state_roots=pre.state_roots,
historical_roots=pre.historical_roots,
eth1_data=pre.eth1_data,
eth1_data_votes=pre.eth1_data_votes,
eth1_deposit_index=pre.eth1_deposit_index,
validators=pre.validators,
balances=pre.balances,
randao_mixes=pre.randao_mixes,
slashings=pre.slashings,
previous_epoch_participation=pre.previous_epoch_participation,
current_epoch_participation=pre.current_epoch_participation,
justification_bits=pre.justification_bits,
previous_justified_checkpoint=pre.previous_justified_checkpoint,
current_justified_checkpoint=pre.current_justified_checkpoint,
finalized_checkpoint=pre.finalized_checkpoint,
inactivity_scores=pre.inactivity_scores,
current_sync_committee=pre.current_sync_committee,
next_sync_committee=pre.next_sync_committee,
latest_execution_payload_header=pre.latest_execution_payload_header,
next_withdrawal_index=pre.next_withdrawal_index,
next_withdrawal_validator_index=pre.next_withdrawal_validator_index,
historical_summaries=pre.historical_summaries,
deposit_requests_start_index=pre.deposit_requests_start_index,
deposit_balance_to_consume=pre.deposit_balance_to_consume,
exit_balance_to_consume=pre.exit_balance_to_consume,
earliest_exit_epoch=pre.earliest_exit_epoch,
consolidation_balance_to_consume=pre.consolidation_balance_to_consume,
earliest_consolidation_epoch=pre.earliest_consolidation_epoch,
pending_deposits=pre.pending_deposits,
pending_partial_withdrawals=pre.pending_partial_withdrawals,
pending_consolidations=pre.pending_consolidations,
# [New in Fulu:EIP7917]
proposer_lookahead=initialize_proposer_lookahead(pre),
)
return post