2018-11-28 19:49:03 +00:00
|
|
|
# beacon_chain
|
2019-02-25 14:48:36 +00:00
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
2018-11-28 19:49:03 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
2018-12-13 16:00:55 +00:00
|
|
|
chronicles, math, options, sequtils,
|
2018-12-11 17:55:45 +00:00
|
|
|
../extras, ../ssz,
|
|
|
|
./crypto, ./datatypes, ./digest, ./helpers, ./validator
|
2018-11-28 19:49:03 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_effective_balance
|
2019-01-29 04:15:00 +00:00
|
|
|
func get_effective_balance*(state: BeaconState, index: ValidatorIndex): uint64 =
|
2019-02-07 23:07:15 +00:00
|
|
|
## Return the effective balance (also known as "balance at stake") for a
|
|
|
|
## validator with the given ``index``.
|
2019-01-21 18:26:58 +00:00
|
|
|
min(state.validator_balances[index], MAX_DEPOSIT_AMOUNT)
|
2018-12-27 20:14:37 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#validate_proof_of_possession
|
2018-12-27 20:14:37 +00:00
|
|
|
func validate_proof_of_possession(state: BeaconState,
|
|
|
|
pubkey: ValidatorPubKey,
|
|
|
|
proof_of_possession: ValidatorSig,
|
2019-02-07 10:43:21 +00:00
|
|
|
withdrawal_credentials: Eth2Digest): bool =
|
2018-12-27 20:14:37 +00:00
|
|
|
let proof_of_possession_data = DepositInput(
|
|
|
|
pubkey: pubkey,
|
|
|
|
withdrawal_credentials: withdrawal_credentials,
|
2019-02-14 03:16:51 +00:00
|
|
|
proof_of_possession: ValidatorSig(),
|
2018-12-27 20:14:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
bls_verify(
|
|
|
|
pubkey,
|
|
|
|
hash_tree_root_final(proof_of_possession_data).data,
|
|
|
|
proof_of_possession,
|
|
|
|
get_domain(
|
2019-01-29 03:22:22 +00:00
|
|
|
state.fork,
|
2019-02-14 03:16:51 +00:00
|
|
|
get_current_epoch(state),
|
2018-12-27 20:14:37 +00:00
|
|
|
DOMAIN_DEPOSIT,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#process_deposit
|
2018-12-13 16:00:55 +00:00
|
|
|
func process_deposit(state: var BeaconState,
|
|
|
|
pubkey: ValidatorPubKey,
|
2019-02-14 03:16:51 +00:00
|
|
|
amount: Gwei,
|
2018-12-13 16:00:55 +00:00
|
|
|
proof_of_possession: ValidatorSig,
|
2019-02-07 20:13:10 +00:00
|
|
|
withdrawal_credentials: Eth2Digest) =
|
2018-12-13 16:00:55 +00:00
|
|
|
## Process a deposit from Ethereum 1.0.
|
|
|
|
|
2019-01-17 08:14:55 +00:00
|
|
|
if false:
|
|
|
|
# TODO return error; currently, just fails if ever called
|
|
|
|
# but hadn't been set up to run at all
|
|
|
|
doAssert validate_proof_of_possession(
|
2019-02-07 10:43:21 +00:00
|
|
|
state, pubkey, proof_of_possession, withdrawal_credentials)
|
2018-12-27 23:40:22 +00:00
|
|
|
|
|
|
|
let validator_pubkeys = state.validator_registry.mapIt(it.pubkey)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
|
|
|
if pubkey notin validator_pubkeys:
|
|
|
|
# Add new validator
|
2019-01-17 18:27:11 +00:00
|
|
|
let validator = Validator(
|
2018-12-13 16:00:55 +00:00
|
|
|
pubkey: pubkey,
|
|
|
|
withdrawal_credentials: withdrawal_credentials,
|
2019-01-29 03:22:22 +00:00
|
|
|
activation_epoch: FAR_FUTURE_EPOCH,
|
|
|
|
exit_epoch: FAR_FUTURE_EPOCH,
|
2019-02-19 23:07:56 +00:00
|
|
|
withdrawable_epoch: FAR_FUTURE_EPOCH,
|
|
|
|
slashed_epoch: FAR_FUTURE_EPOCH,
|
2019-01-16 11:39:16 +00:00
|
|
|
status_flags: 0,
|
2018-12-13 16:00:55 +00:00
|
|
|
)
|
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
## Note: In phase 2 registry indices that have been withdrawn for a long
|
|
|
|
## time will be recycled.
|
2019-01-30 08:41:07 +00:00
|
|
|
state.validator_registry.add(validator)
|
|
|
|
state.validator_balances.add(amount)
|
2018-12-13 16:00:55 +00:00
|
|
|
else:
|
2019-01-16 12:20:44 +00:00
|
|
|
# Increase balance by deposit amount
|
2018-12-13 16:00:55 +00:00
|
|
|
let index = validator_pubkeys.find(pubkey)
|
|
|
|
let validator = addr state.validator_registry[index]
|
2018-12-27 20:14:37 +00:00
|
|
|
assert state.validator_registry[index].withdrawal_credentials ==
|
|
|
|
withdrawal_credentials
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-01-30 08:41:07 +00:00
|
|
|
state.validator_balances[index] += amount
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_entry_exit_effect_epoch
|
2019-02-20 01:33:58 +00:00
|
|
|
func get_entry_exit_effect_epoch*(epoch: Epoch): Epoch =
|
2019-01-29 03:22:22 +00:00
|
|
|
## An entry or exit triggered in the ``epoch`` given by the input takes effect at
|
|
|
|
## the epoch given by the output.
|
2019-02-19 23:07:56 +00:00
|
|
|
epoch + 1 + ACTIVATION_EXIT_DELAY
|
2019-01-29 03:22:22 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#activate_validator
|
2018-12-13 16:00:55 +00:00
|
|
|
func activate_validator(state: var BeaconState,
|
2019-01-29 04:15:00 +00:00
|
|
|
index: ValidatorIndex,
|
2019-01-16 12:20:44 +00:00
|
|
|
genesis: bool) =
|
2018-12-13 16:00:55 +00:00
|
|
|
## Activate the validator with the given ``index``.
|
2019-02-14 03:16:51 +00:00
|
|
|
## Note that this function mutates ``state``.
|
2018-12-13 16:00:55 +00:00
|
|
|
let validator = addr state.validator_registry[index]
|
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
validator.activation_epoch =
|
|
|
|
if genesis:
|
|
|
|
GENESIS_EPOCH
|
|
|
|
else:
|
|
|
|
get_entry_exit_effect_epoch(get_current_epoch(state))
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#initiate_validator_exit
|
2019-02-22 17:53:37 +00:00
|
|
|
func initiate_validator_exit*(state: var BeaconState,
|
|
|
|
index: ValidatorIndex) =
|
2018-12-13 16:00:55 +00:00
|
|
|
## Initiate exit for the validator with the given ``index``.
|
2019-02-14 03:16:51 +00:00
|
|
|
## Note that this function mutates ``state``.
|
2019-02-20 20:35:27 +00:00
|
|
|
var validator = addr state.validator_registry[index]
|
2019-01-17 21:01:55 +00:00
|
|
|
validator.status_flags = validator.status_flags or INITIATED_EXIT
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#exit_validator
|
2019-01-16 12:20:44 +00:00
|
|
|
func exit_validator*(state: var BeaconState,
|
2019-01-29 04:15:00 +00:00
|
|
|
index: ValidatorIndex) =
|
2018-12-13 16:00:55 +00:00
|
|
|
## Exit the validator with the given ``index``.
|
2019-02-14 03:16:51 +00:00
|
|
|
## Note that this function mutates ``state``.
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-01-17 21:01:55 +00:00
|
|
|
let validator = addr state.validator_registry[index]
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-01-17 21:01:55 +00:00
|
|
|
# The following updates only occur if not previous exited
|
2019-01-29 03:22:22 +00:00
|
|
|
if validator.exit_epoch <= get_entry_exit_effect_epoch(get_current_epoch(state)):
|
2018-12-13 16:00:55 +00:00
|
|
|
return
|
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
validator.exit_epoch = get_entry_exit_effect_epoch(get_current_epoch(state))
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
func slash_validator*(state: var BeaconState, index: ValidatorIndex) =
|
|
|
|
## Slash the validator with index ``index``.
|
2019-02-14 03:16:51 +00:00
|
|
|
## Note that this function mutates ``state``.
|
2019-02-20 20:35:27 +00:00
|
|
|
|
|
|
|
let validator = addr state.validator_registry[index]
|
2019-02-22 09:56:45 +00:00
|
|
|
doAssert state.slot < get_epoch_start_slot(validator.withdrawable_epoch) ##\
|
2019-02-20 20:35:27 +00:00
|
|
|
## [TO BE REMOVED IN PHASE 2]
|
|
|
|
|
|
|
|
exit_validator(state, index)
|
|
|
|
state.latest_slashed_balances[
|
|
|
|
(get_current_epoch(state) mod LATEST_SLASHED_EXIT_LENGTH).int
|
|
|
|
] += get_effective_balance(state, index)
|
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
let
|
2019-02-20 20:35:27 +00:00
|
|
|
whistleblower_index = get_beacon_proposer_index(state, state.slot)
|
|
|
|
whistleblower_reward = get_effective_balance(state, index) div
|
|
|
|
WHISTLEBLOWER_REWARD_QUOTIENT
|
2019-01-16 13:39:34 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
state.validator_balances[whistleblower_index] += whistleblower_reward
|
|
|
|
state.validator_balances[index] -= whistleblower_reward
|
|
|
|
validator.slashed_epoch = get_current_epoch(state)
|
|
|
|
|
|
|
|
# Spec bug in v0.3.0, fixed since: it has LATEST_PENALIZED_EXIT_LENGTH
|
|
|
|
validator.withdrawable_epoch = get_current_epoch(state) +
|
|
|
|
LATEST_SLASHED_EXIT_LENGTH
|
2019-01-16 13:39:34 +00:00
|
|
|
|
2019-02-22 09:56:45 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#on-genesis
|
|
|
|
func get_genesis_beacon_state*(
|
2018-12-19 04:36:10 +00:00
|
|
|
initial_validator_deposits: openArray[Deposit],
|
|
|
|
genesis_time: uint64,
|
2019-01-18 00:14:22 +00:00
|
|
|
latest_eth1_data: Eth1Data,
|
2018-12-27 23:40:22 +00:00
|
|
|
flags: UpdateFlags = {}): BeaconState =
|
2019-02-22 09:56:45 +00:00
|
|
|
## Get the genesis ``BeaconState``.
|
2018-11-29 05:23:40 +00:00
|
|
|
##
|
|
|
|
## Before the beacon chain starts, validators will register in the Eth1 chain
|
|
|
|
## and deposit ETH. When enough many validators have registered, a
|
|
|
|
## `ChainStart` log will be emitted and the beacon chain can start beaconing.
|
|
|
|
##
|
|
|
|
## Because the state root hash is part of the genesis block, the beacon state
|
|
|
|
## must be calculated before creating the genesis block.
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2018-11-29 05:23:40 +00:00
|
|
|
# Induct validators
|
2019-02-20 01:33:58 +00:00
|
|
|
# Not in spec: the system doesn't work unless there are at least SLOTS_PER_EPOCH
|
2018-11-29 22:11:05 +00:00
|
|
|
# validators - there needs to be at least one member in each committee -
|
|
|
|
# good to know for testing, though arguably the system is not that useful at
|
|
|
|
# at that point :)
|
2019-02-20 01:33:58 +00:00
|
|
|
assert initial_validator_deposits.len >= SLOTS_PER_EPOCH
|
2018-11-29 05:23:40 +00:00
|
|
|
|
2018-12-13 16:00:55 +00:00
|
|
|
var state = BeaconState(
|
|
|
|
# Misc
|
2019-01-16 10:21:06 +00:00
|
|
|
slot: GENESIS_SLOT,
|
2018-12-13 16:00:55 +00:00
|
|
|
genesis_time: genesis_time,
|
2019-01-29 03:22:22 +00:00
|
|
|
fork: Fork(
|
2019-01-29 04:15:00 +00:00
|
|
|
previous_version: GENESIS_FORK_VERSION,
|
|
|
|
current_version: GENESIS_FORK_VERSION,
|
2019-01-30 08:41:07 +00:00
|
|
|
epoch: GENESIS_EPOCH,
|
2018-12-13 16:00:55 +00:00
|
|
|
),
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
validator_registry_update_epoch: GENESIS_EPOCH,
|
2019-02-14 03:16:51 +00:00
|
|
|
|
2019-02-22 09:56:45 +00:00
|
|
|
# validator_registry and validator_balances automatically initalized
|
2019-02-14 03:16:51 +00:00
|
|
|
# TODO remove or conditionally compile; not in spec anymore
|
2018-12-03 21:41:24 +00:00
|
|
|
validator_registry_delta_chain_tip: ZERO_HASH,
|
|
|
|
|
2019-01-16 11:39:16 +00:00
|
|
|
# Randomness and committees
|
2019-02-22 09:56:45 +00:00
|
|
|
# latest_randao_mixes automatically initialized
|
2019-02-19 23:07:56 +00:00
|
|
|
previous_shuffling_start_shard: GENESIS_START_SHARD,
|
|
|
|
current_shuffling_start_shard: GENESIS_START_SHARD,
|
|
|
|
previous_shuffling_epoch: GENESIS_EPOCH,
|
|
|
|
current_shuffling_epoch: GENESIS_EPOCH,
|
|
|
|
previous_shuffling_seed: ZERO_HASH,
|
|
|
|
current_shuffling_seed: ZERO_HASH,
|
2019-01-16 11:39:16 +00:00
|
|
|
|
2018-12-03 21:41:24 +00:00
|
|
|
# Finality
|
2019-01-29 03:22:22 +00:00
|
|
|
previous_justified_epoch: GENESIS_EPOCH,
|
|
|
|
justified_epoch: GENESIS_EPOCH,
|
2019-01-16 11:39:16 +00:00
|
|
|
justification_bitfield: 0,
|
2019-01-29 03:22:22 +00:00
|
|
|
finalized_epoch: GENESIS_EPOCH,
|
2018-12-03 21:41:24 +00:00
|
|
|
|
2019-01-16 11:39:16 +00:00
|
|
|
# Deposit root
|
2019-01-18 00:14:22 +00:00
|
|
|
latest_eth1_data: latest_eth1_data,
|
2019-02-22 09:56:45 +00:00
|
|
|
|
|
|
|
# Recent state
|
|
|
|
# TODO properly initialize latest_crosslinks
|
|
|
|
# latest_block_roots, latest_active_index_roots, latest_slashed_balances,
|
|
|
|
# latest_attestations, and batched_block_roots automatically initialized.
|
2018-11-29 05:23:40 +00:00
|
|
|
)
|
|
|
|
|
2019-01-16 11:39:16 +00:00
|
|
|
# Process initial deposits
|
2018-12-13 16:00:55 +00:00
|
|
|
for deposit in initial_validator_deposits:
|
2019-01-30 08:41:07 +00:00
|
|
|
process_deposit(
|
2018-12-13 16:00:55 +00:00
|
|
|
state,
|
2018-12-27 20:14:37 +00:00
|
|
|
deposit.deposit_data.deposit_input.pubkey,
|
2019-01-16 10:21:06 +00:00
|
|
|
deposit.deposit_data.amount,
|
2018-12-27 20:14:37 +00:00
|
|
|
deposit.deposit_data.deposit_input.proof_of_possession,
|
|
|
|
deposit.deposit_data.deposit_input.withdrawal_credentials,
|
2018-12-13 16:00:55 +00:00
|
|
|
)
|
2019-01-16 12:20:44 +00:00
|
|
|
|
|
|
|
# Process initial activations
|
2019-01-21 18:26:58 +00:00
|
|
|
for validator_index in 0 ..< state.validator_registry.len:
|
2019-01-29 04:15:00 +00:00
|
|
|
let vi = validator_index.ValidatorIndex
|
2019-01-30 08:41:07 +00:00
|
|
|
if get_effective_balance(state, vi) >= MAX_DEPOSIT_AMOUNT:
|
2019-01-21 18:26:58 +00:00
|
|
|
activate_validator(state, vi, true)
|
2018-12-13 16:00:55 +00:00
|
|
|
|
2019-02-22 09:56:45 +00:00
|
|
|
let genesis_active_index_root = Eth2Digest(data: hash_tree_root(
|
|
|
|
get_active_validator_indices(state.validator_registry, GENESIS_EPOCH)))
|
|
|
|
for index in 0 ..< LATEST_ACTIVE_INDEX_ROOTS_LENGTH:
|
|
|
|
state.latest_active_index_roots[index] = genesis_active_index_root
|
|
|
|
state.current_shuffling_seed = generate_seed(state, GENESIS_EPOCH)
|
|
|
|
|
2018-12-13 16:00:55 +00:00
|
|
|
state
|
|
|
|
|
2019-02-21 04:42:17 +00:00
|
|
|
# TODO candidate for spec?
|
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#on-genesis
|
|
|
|
func get_initial_beacon_block*(state: BeaconState): BeaconBlock =
|
|
|
|
BeaconBlock(
|
|
|
|
slot: GENESIS_SLOT,
|
|
|
|
state_root: Eth2Digest(data: hash_tree_root(state))
|
|
|
|
)
|
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_block_root
|
2018-12-11 21:53:18 +00:00
|
|
|
func get_block_root*(state: BeaconState,
|
2019-02-20 01:33:58 +00:00
|
|
|
slot: Slot): Eth2Digest =
|
2019-02-13 10:26:32 +00:00
|
|
|
# Return the block root at a recent ``slot``.
|
|
|
|
|
2018-12-21 22:37:46 +00:00
|
|
|
doAssert state.slot <= slot + LATEST_BLOCK_ROOTS_LENGTH
|
2018-12-14 16:12:39 +00:00
|
|
|
doAssert slot < state.slot
|
2018-12-21 22:37:46 +00:00
|
|
|
state.latest_block_roots[slot mod LATEST_BLOCK_ROOTS_LENGTH]
|
2018-11-29 05:23:40 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_attestation_participants
|
2018-12-04 18:45:30 +00:00
|
|
|
func get_attestation_participants*(state: BeaconState,
|
2018-12-03 21:41:24 +00:00
|
|
|
attestation_data: AttestationData,
|
2019-02-07 23:07:15 +00:00
|
|
|
bitfield: seq[byte]): seq[ValidatorIndex] =
|
2019-02-13 10:26:32 +00:00
|
|
|
## Return the participant indices at for the ``attestation_data`` and
|
|
|
|
## ``bitfield``.
|
2018-11-29 18:18:12 +00:00
|
|
|
## Attestation participants in the attestation data are called out in a
|
2019-02-13 10:26:32 +00:00
|
|
|
## bit field that corresponds to the committee of the shard at the time;
|
|
|
|
## this function converts it to list of indices in to BeaconState.validators
|
|
|
|
##
|
2018-11-29 18:18:12 +00:00
|
|
|
## Returns empty list if the shard is not found
|
2019-02-07 23:07:15 +00:00
|
|
|
## Return the participant indices at for the ``attestation_data`` and ``bitfield``.
|
2019-02-13 10:26:32 +00:00
|
|
|
##
|
2018-11-29 22:11:05 +00:00
|
|
|
# TODO Linear search through shard list? borderline ok, it's a small list
|
|
|
|
# TODO bitfield type needed, once bit order settles down
|
|
|
|
# TODO iterator candidate
|
2019-01-26 19:32:10 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
## Return the participant indices at for the ``attestation_data`` and
|
|
|
|
## ``bitfield``.
|
|
|
|
let crosslink_committees = get_crosslink_committees_at_slot(
|
|
|
|
state, attestation_data.slot)
|
2019-01-26 19:32:10 +00:00
|
|
|
|
2019-02-06 19:37:25 +00:00
|
|
|
assert anyIt(
|
2019-01-26 19:32:10 +00:00
|
|
|
crosslink_committees,
|
2019-02-06 19:37:25 +00:00
|
|
|
it[1] == attestation_data.shard)
|
2019-01-26 19:32:10 +00:00
|
|
|
let crosslink_committee = mapIt(
|
2019-02-06 19:37:25 +00:00
|
|
|
filterIt(crosslink_committees, it.shard == attestation_data.shard),
|
|
|
|
it.committee)[0]
|
2019-02-07 23:07:15 +00:00
|
|
|
|
|
|
|
assert verify_bitfield(bitfield, len(crosslink_committee))
|
2019-01-26 19:32:10 +00:00
|
|
|
|
|
|
|
# Find the participating attesters in the committee
|
|
|
|
result = @[]
|
|
|
|
for i, validator_index in crosslink_committee:
|
2019-02-07 23:07:15 +00:00
|
|
|
let aggregation_bit = get_bitfield_bit(bitfield, i)
|
2019-01-26 19:32:10 +00:00
|
|
|
if aggregation_bit == 1:
|
|
|
|
result.add(validator_index)
|
2018-12-04 18:45:30 +00:00
|
|
|
|
2018-12-11 17:55:45 +00:00
|
|
|
func process_ejections*(state: var BeaconState) =
|
|
|
|
## Iterate through the validator registry
|
|
|
|
## and eject active validators with balance below ``EJECTION_BALANCE``.
|
|
|
|
|
2019-01-17 20:09:07 +00:00
|
|
|
for index in get_active_validator_indices(state.validator_registry, state.slot):
|
2018-12-27 20:14:37 +00:00
|
|
|
if state.validator_balances[index] < EJECTION_BALANCE:
|
2019-01-17 21:01:55 +00:00
|
|
|
exit_validator(state, index)
|
2018-12-11 17:55:45 +00:00
|
|
|
|
2019-02-22 18:46:45 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#get_total_balance
|
|
|
|
func get_total_balance*(state: BeaconState, validators: seq[ValidatorIndex]): Gwei =
|
|
|
|
# Return the combined effective balance of an array of validators.
|
|
|
|
foldl(validators, a + get_effective_balance(state, b), 0'u64)
|
|
|
|
|
2018-12-11 17:55:45 +00:00
|
|
|
func update_validator_registry*(state: var BeaconState) =
|
2018-12-27 20:14:37 +00:00
|
|
|
let
|
2019-01-29 03:22:22 +00:00
|
|
|
current_epoch = get_current_epoch(state)
|
|
|
|
next_epoch = current_epoch + 1
|
2018-12-27 20:14:37 +00:00
|
|
|
active_validator_indices =
|
2019-01-17 20:09:07 +00:00
|
|
|
get_active_validator_indices(state.validator_registry, state.slot)
|
2018-12-27 20:14:37 +00:00
|
|
|
# The total effective balance of active validators
|
2019-02-22 18:46:45 +00:00
|
|
|
total_balance = get_total_balance(state, active_validator_indices)
|
2018-12-27 20:14:37 +00:00
|
|
|
|
|
|
|
# The maximum balance churn in Gwei (for deposits and exits separately)
|
|
|
|
max_balance_churn = max(
|
2019-01-21 18:26:58 +00:00
|
|
|
MAX_DEPOSIT_AMOUNT,
|
2018-12-27 20:14:37 +00:00
|
|
|
total_balance div (2 * MAX_BALANCE_CHURN_QUOTIENT)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Activate validators within the allowable balance churn
|
|
|
|
var balance_churn = 0'u64
|
|
|
|
for index, validator in state.validator_registry:
|
2019-01-29 03:22:22 +00:00
|
|
|
if validator.activation_epoch > get_entry_exit_effect_epoch(current_epoch) and
|
2019-01-21 18:26:58 +00:00
|
|
|
state.validator_balances[index] >= MAX_DEPOSIT_AMOUNT:
|
2018-12-27 20:14:37 +00:00
|
|
|
# Check the balance churn would be within the allowance
|
2019-01-29 04:15:00 +00:00
|
|
|
balance_churn += get_effective_balance(state, index.ValidatorIndex)
|
2018-12-27 20:14:37 +00:00
|
|
|
if balance_churn > max_balance_churn:
|
|
|
|
break
|
|
|
|
|
|
|
|
# Activate validator
|
2019-01-29 04:15:00 +00:00
|
|
|
activate_validator(state, index.ValidatorIndex, false)
|
2018-12-27 20:14:37 +00:00
|
|
|
|
|
|
|
# Exit validators within the allowable balance churn
|
|
|
|
balance_churn = 0
|
|
|
|
for index, validator in state.validator_registry:
|
2019-01-29 03:22:22 +00:00
|
|
|
if validator.exit_epoch > get_entry_exit_effect_epoch(current_epoch) and
|
2019-01-16 12:57:49 +00:00
|
|
|
((validator.status_flags and INITIATED_EXIT) == INITIATED_EXIT):
|
2018-12-27 20:14:37 +00:00
|
|
|
# Check the balance churn would be within the allowance
|
2019-01-29 04:15:00 +00:00
|
|
|
balance_churn += get_effective_balance(state, index.ValidatorIndex)
|
2018-12-27 20:14:37 +00:00
|
|
|
if balance_churn > max_balance_churn:
|
|
|
|
break
|
|
|
|
|
|
|
|
# Exit validator
|
2019-01-29 04:15:00 +00:00
|
|
|
exit_validator(state, index.ValidatorIndex)
|
2018-12-27 20:14:37 +00:00
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
state.validator_registry_update_epoch = current_epoch
|
|
|
|
|
2019-01-16 11:07:41 +00:00
|
|
|
# Perform additional updates
|
2019-02-19 23:07:56 +00:00
|
|
|
state.current_shuffling_epoch = next_epoch
|
|
|
|
state.current_shuffling_start_shard = (state.current_shuffling_start_shard + get_current_epoch_committee_count(state)) mod SHARD_COUNT
|
|
|
|
state.current_shuffling_seed = generate_seed(state, state.current_shuffling_epoch)
|
2019-01-16 11:07:41 +00:00
|
|
|
|
|
|
|
# TODO "If a validator registry update does not happen do the following: ..."
|
|
|
|
|
2019-02-22 17:53:37 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#attestations-1
|
2018-12-27 23:40:22 +00:00
|
|
|
proc checkAttestation*(
|
|
|
|
state: BeaconState, attestation: Attestation, flags: UpdateFlags): bool =
|
2018-12-11 17:55:45 +00:00
|
|
|
## Check that an attestation follows the rules of being included in the state
|
2018-12-27 20:14:37 +00:00
|
|
|
## at the current slot. When acting as a proposer, the same rules need to
|
|
|
|
## be followed!
|
2018-12-11 17:55:45 +00:00
|
|
|
|
2019-02-11 14:32:27 +00:00
|
|
|
# Can't underflow, because GENESIS_SLOT > MIN_ATTESTATION_INCLUSION_DELAY
|
2019-02-25 14:53:01 +00:00
|
|
|
doAssert GENESIS_SLOT > MIN_ATTESTATION_INCLUSION_DELAY
|
|
|
|
|
2019-02-11 14:32:27 +00:00
|
|
|
if not (attestation.data.slot <= state.slot - MIN_ATTESTATION_INCLUSION_DELAY):
|
2018-12-13 16:00:55 +00:00
|
|
|
warn("Attestation too new",
|
|
|
|
attestation_slot = attestation.data.slot, state_slot = state.slot)
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
2019-02-22 17:53:37 +00:00
|
|
|
# Can't underflow, because GENESIS_SLOT > MIN_ATTESTATION_INCLUSION_DELAY
|
2019-02-11 14:32:27 +00:00
|
|
|
if not (state.slot - MIN_ATTESTATION_INCLUSION_DELAY <
|
2019-02-20 01:33:58 +00:00
|
|
|
attestation.data.slot + SLOTS_PER_EPOCH):
|
2018-12-13 16:00:55 +00:00
|
|
|
warn("Attestation too old",
|
|
|
|
attestation_slot = attestation.data.slot, state_slot = state.slot)
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
let expected_justified_epoch =
|
2019-02-22 17:53:37 +00:00
|
|
|
if slot_to_epoch(attestation.data.slot + 1) >= get_current_epoch(state):
|
2019-01-29 03:22:22 +00:00
|
|
|
state.justified_epoch
|
2018-12-11 17:55:45 +00:00
|
|
|
else:
|
2019-01-29 03:22:22 +00:00
|
|
|
state.previous_justified_epoch
|
2018-12-11 17:55:45 +00:00
|
|
|
|
2019-01-29 03:22:22 +00:00
|
|
|
if not (attestation.data.justified_epoch == expected_justified_epoch):
|
|
|
|
warn("Unexpected justified epoch",
|
|
|
|
attestation_justified_epoch = attestation.data.justified_epoch,
|
|
|
|
expected_justified_epoch)
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
2018-12-11 21:53:18 +00:00
|
|
|
let expected_justified_block_root =
|
2019-01-29 03:22:22 +00:00
|
|
|
get_block_root(state, get_epoch_start_slot(attestation.data.justified_epoch))
|
2018-12-27 23:40:22 +00:00
|
|
|
if not (attestation.data.justified_block_root == expected_justified_block_root):
|
2018-12-13 16:00:55 +00:00
|
|
|
warn("Unexpected justified block root",
|
|
|
|
attestation_justified_block_root = attestation.data.justified_block_root,
|
|
|
|
expected_justified_block_root)
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
2019-02-11 14:32:27 +00:00
|
|
|
if not (state.latest_crosslinks[attestation.data.shard] in [
|
|
|
|
attestation.data.latest_crosslink,
|
|
|
|
Crosslink(
|
|
|
|
shard_block_root: attestation.data.shard_block_root,
|
|
|
|
epoch: slot_to_epoch(attestation.data.slot))]):
|
|
|
|
warn("Unexpected crosslink shard")
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
2019-02-11 14:32:27 +00:00
|
|
|
assert allIt(attestation.custody_bitfield, it == 0) #TO BE REMOVED IN PHASE 1
|
|
|
|
assert anyIt(attestation.aggregation_bitfield, it != 0)
|
|
|
|
|
|
|
|
let crosslink_committee = mapIt(
|
|
|
|
filterIt(get_crosslink_committees_at_slot(state, attestation.data.slot),
|
|
|
|
it.shard == attestation.data.shard),
|
|
|
|
it.committee)[0]
|
|
|
|
|
2019-02-12 17:07:44 +00:00
|
|
|
# Extra checks not in specs
|
|
|
|
# https://github.com/status-im/nim-beacon-chain/pull/105#issuecomment-462432544
|
|
|
|
assert attestation.aggregation_bitfield.len == (
|
|
|
|
crosslink_committee.len + 7) div 8, (
|
|
|
|
"Error: got " & $attestation.aggregation_bitfield.len &
|
|
|
|
" but expected " & $((crosslink_committee.len + 7) div 8)
|
|
|
|
)
|
|
|
|
|
|
|
|
assert attestation.custody_bitfield.len == (
|
|
|
|
crosslink_committee.len + 7) div 8, (
|
|
|
|
"Error: got " & $attestation.custody_bitfield.len &
|
|
|
|
" but expected " & $((crosslink_committee.len + 7) div 8)
|
|
|
|
)
|
|
|
|
# End extra checks
|
|
|
|
|
2019-02-11 14:32:27 +00:00
|
|
|
assert allIt(0 ..< len(crosslink_committee),
|
2019-02-11 15:32:22 +00:00
|
|
|
if get_bitfield_bit(attestation.aggregation_bitfield, it) == 0b0:
|
|
|
|
# Should always be true in phase 0, because of above assertion
|
|
|
|
get_bitfield_bit(attestation.custody_bitfield, it) == 0b0
|
|
|
|
else:
|
|
|
|
true)
|
2019-02-11 14:32:27 +00:00
|
|
|
|
2018-12-11 17:55:45 +00:00
|
|
|
let
|
|
|
|
participants = get_attestation_participants(
|
2019-02-06 20:37:21 +00:00
|
|
|
state, attestation.data, attestation.aggregation_bitfield)
|
2019-02-11 14:32:27 +00:00
|
|
|
|
|
|
|
## TODO when the custody_bitfield assertion-to-emptiness disappears do this
|
|
|
|
## and fix the custody_bit_0_participants check to depend on it.
|
|
|
|
# custody_bit_1_participants = {nothing, always, because assertion above}
|
|
|
|
custody_bit_1_participants: seq[ValidatorIndex] = @[]
|
|
|
|
custody_bit_0_participants = participants
|
|
|
|
|
2018-12-27 23:40:22 +00:00
|
|
|
group_public_key = bls_aggregate_pubkeys(
|
|
|
|
participants.mapIt(state.validator_registry[it].pubkey))
|
|
|
|
|
|
|
|
if skipValidation notin flags:
|
|
|
|
# Verify that aggregate_signature verifies using the group pubkey.
|
2019-02-11 14:32:27 +00:00
|
|
|
assert bls_verify_multiple(
|
|
|
|
@[
|
|
|
|
bls_aggregate_pubkeys(mapIt(custody_bit_0_participants,
|
|
|
|
state.validator_registry[it].pubkey)),
|
|
|
|
bls_aggregate_pubkeys(mapIt(custody_bit_1_participants,
|
|
|
|
state.validator_registry[it].pubkey)),
|
|
|
|
],
|
|
|
|
@[
|
|
|
|
hash_tree_root(AttestationDataAndCustodyBit(
|
|
|
|
data: attestation.data, custody_bit: false)),
|
|
|
|
hash_tree_root(AttestationDataAndCustodyBit(
|
|
|
|
data: attestation.data, custody_bit: true)),
|
|
|
|
],
|
|
|
|
attestation.aggregate_signature,
|
|
|
|
get_domain(state.fork, slot_to_epoch(attestation.data.slot),
|
|
|
|
DOMAIN_ATTESTATION),
|
|
|
|
)
|
2018-12-11 17:55:45 +00:00
|
|
|
|
|
|
|
# To be removed in Phase1:
|
2018-12-11 21:53:18 +00:00
|
|
|
if attestation.data.shard_block_root != ZERO_HASH:
|
2018-12-13 16:00:55 +00:00
|
|
|
warn("Invalid shard block root")
|
2018-12-11 17:55:45 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
true
|
2019-02-13 10:26:32 +00:00
|
|
|
|
2019-02-20 20:35:27 +00:00
|
|
|
# https://github.com/ethereum/eth2.0-specs/blob/v0.3.0/specs/core/0_beacon-chain.md#prepare_validator_for_withdrawal
|
2019-02-14 03:16:51 +00:00
|
|
|
func prepare_validator_for_withdrawal(state: var BeaconState, index: ValidatorIndex) =
|
2019-02-20 20:35:27 +00:00
|
|
|
## Set the validator with the given ``index`` as withdrawable
|
|
|
|
## ``MIN_VALIDATOR_WITHDRAWABILITY_DELAY`` after the current epoch.
|
2019-02-14 03:16:51 +00:00
|
|
|
## Note that this function mutates ``state``.
|
|
|
|
var validator = addr state.validator_registry[index]
|
2019-02-20 20:35:27 +00:00
|
|
|
|
|
|
|
# Bug in 0.3.0 spec; constant got renamed. Use 0.3.0 name.
|
|
|
|
validator.withdrawable_epoch = get_current_epoch(state) +
|
|
|
|
MIN_VALIDATOR_WITHDRAWAL_DELAY
|