2019-05-15 16:36:32 +00:00
|
|
|
from eth2spec.test.helpers.keys import pubkeys
|
2019-05-31 23:51:09 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_impl import hash_tree_root
|
2019-05-15 16:36:32 +00:00
|
|
|
|
|
|
|
|
2019-05-30 20:57:18 +00:00
|
|
|
def build_mock_validator(spec, i: int, balance: int):
|
2019-05-15 16:36:32 +00:00
|
|
|
pubkey = pubkeys[i]
|
|
|
|
# insecurely use pubkey as withdrawal key as well
|
2019-06-11 15:32:42 +00:00
|
|
|
withdrawal_credentials = spec.int_to_bytes(spec.BLS_WITHDRAWAL_PREFIX, length=1) + spec.hash(pubkey)[1:]
|
2019-05-15 16:36:32 +00:00
|
|
|
return spec.Validator(
|
|
|
|
pubkey=pubkeys[i],
|
|
|
|
withdrawal_credentials=withdrawal_credentials,
|
|
|
|
activation_eligibility_epoch=spec.FAR_FUTURE_EPOCH,
|
|
|
|
activation_epoch=spec.FAR_FUTURE_EPOCH,
|
|
|
|
exit_epoch=spec.FAR_FUTURE_EPOCH,
|
|
|
|
withdrawable_epoch=spec.FAR_FUTURE_EPOCH,
|
|
|
|
effective_balance=min(balance - balance % spec.EFFECTIVE_BALANCE_INCREMENT, spec.MAX_EFFECTIVE_BALANCE)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-05-30 20:57:18 +00:00
|
|
|
def create_genesis_state(spec, num_validators):
|
2019-05-15 16:36:32 +00:00
|
|
|
deposit_root = b'\x42' * 32
|
|
|
|
|
|
|
|
state = spec.BeaconState(
|
|
|
|
genesis_time=0,
|
2019-06-09 19:41:21 +00:00
|
|
|
eth1_deposit_index=num_validators,
|
|
|
|
eth1_data=spec.Eth1Data(
|
2019-05-15 16:36:32 +00:00
|
|
|
deposit_root=deposit_root,
|
|
|
|
deposit_count=num_validators,
|
2019-05-30 20:57:18 +00:00
|
|
|
block_hash=spec.ZERO_HASH,
|
2019-05-15 16:36:32 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
# We "hack" in the initial validators,
|
|
|
|
# as it is much faster than creating and processing genesis deposits for every single test case.
|
|
|
|
state.balances = [spec.MAX_EFFECTIVE_BALANCE] * num_validators
|
2019-06-09 19:41:21 +00:00
|
|
|
state.validators = [build_mock_validator(spec, i, state.balances[i]) for i in range(num_validators)]
|
2019-05-15 16:36:32 +00:00
|
|
|
|
|
|
|
# Process genesis activations
|
2019-06-09 19:41:21 +00:00
|
|
|
for validator in state.validators:
|
2019-05-15 16:36:32 +00:00
|
|
|
if validator.effective_balance >= spec.MAX_EFFECTIVE_BALANCE:
|
|
|
|
validator.activation_eligibility_epoch = spec.GENESIS_EPOCH
|
|
|
|
validator.activation_epoch = spec.GENESIS_EPOCH
|
|
|
|
|
2019-05-30 20:57:18 +00:00
|
|
|
genesis_active_index_root = hash_tree_root(spec.get_active_validator_indices(state, spec.GENESIS_EPOCH))
|
2019-06-19 19:59:44 +00:00
|
|
|
for index in range(spec.EPOCHS_PER_HISTORICAL_VECTOR):
|
2019-06-09 19:41:21 +00:00
|
|
|
state.active_index_roots[index] = genesis_active_index_root
|
2019-05-15 16:36:32 +00:00
|
|
|
|
|
|
|
return state
|