2019-11-15 20:11:42 +00:00
# Ethereum 2.0 Phase 1 -- The Beacon Chain for Shards
2019-10-12 03:05:08 +00:00
**Notice**: This document is a work-in-progress for researchers and implementers.
## Table of contents
2020-01-24 23:43:43 +00:00
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE - RUN doctoc TO UPDATE -->
**Table of Contents**
2019-10-12 03:05:08 +00:00
2020-01-24 23:43:43 +00:00
- [Introduction ](#introduction )
- [Custom types ](#custom-types )
- [Configuration ](#configuration )
- [Misc ](#misc )
2020-04-30 18:25:18 +00:00
- [New containers ](#new-containers )
- [`CustodyChunkChallenge` ](#custodychunkchallenge )
- [`CustodyChunkChallengeRecord` ](#custodychunkchallengerecord )
- [`CustodyChunkResponse` ](#custodychunkresponse )
- [`CustodySlashing` ](#custodyslashing )
- [`SignedCustodySlashing` ](#signedcustodyslashing )
- [`CustodyKeyReveal` ](#custodykeyreveal )
- [`EarlyDerivedSecretReveal` ](#earlyderivedsecretreveal )
2020-01-24 23:43:43 +00:00
- [Updated containers ](#updated-containers )
- [Extended `AttestationData` ](#extended-attestationdata )
- [Extended `Attestation` ](#extended-attestation )
- [Extended `PendingAttestation` ](#extended-pendingattestation )
2020-05-01 18:25:11 +00:00
- [Extended `IndexedAttestation` ](#extended-indexedattestation )
- [Extended `AttesterSlashing` ](#extended-attesterslashing )
2020-01-24 23:43:43 +00:00
- [Extended `Validator` ](#extended-validator )
- [Extended `BeaconBlockBody` ](#extended-beaconblockbody )
- [Extended `BeaconBlock` ](#extended-beaconblock )
- [Extended `SignedBeaconBlock` ](#extended-signedbeaconblock )
- [Extended `BeaconState` ](#extended-beaconstate )
2020-04-30 18:25:18 +00:00
- [New containers ](#new-containers-1 )
2020-03-31 04:37:36 +00:00
- [`ShardBlock` ](#shardblock )
- [`SignedShardBlock` ](#signedshardblock )
- [`ShardBlockHeader` ](#shardblockheader )
2020-01-24 23:43:43 +00:00
- [`ShardState` ](#shardstate )
- [`ShardTransition` ](#shardtransition )
- [`CompactCommittee` ](#compactcommittee )
- [`AttestationCustodyBitWrapper` ](#attestationcustodybitwrapper )
- [Helper functions ](#helper-functions )
- [Misc ](#misc-1 )
2020-04-28 03:28:21 +00:00
- [`compute_previous_slot` ](#compute_previous_slot )
2020-01-24 23:43:43 +00:00
- [`pack_compact_validator` ](#pack_compact_validator )
2020-03-31 10:21:33 +00:00
- [`unpack_compact_validator` ](#unpack_compact_validator )
2020-01-24 23:43:43 +00:00
- [`committee_to_compact_committee` ](#committee_to_compact_committee )
- [`compute_shard_from_committee_index` ](#compute_shard_from_committee_index )
2020-04-03 16:29:35 +00:00
- [`compute_offset_slots` ](#compute_offset_slots )
2020-04-16 11:43:48 +00:00
- [`compute_updated_gasprice` ](#compute_updated_gasprice )
2020-01-24 23:43:43 +00:00
- [Beacon state accessors ](#beacon-state-accessors )
- [`get_active_shard_count` ](#get_active_shard_count )
- [`get_online_validator_indices` ](#get_online_validator_indices )
- [`get_shard_committee` ](#get_shard_committee )
- [`get_light_client_committee` ](#get_light_client_committee )
2020-04-02 03:20:22 +00:00
- [`get_shard_proposer_index` ](#get_shard_proposer_index )
2020-01-24 23:43:43 +00:00
- [`get_indexed_attestation` ](#get_indexed_attestation )
- [`get_start_shard` ](#get_start_shard )
- [`get_shard` ](#get_shard )
2020-02-28 19:20:37 +00:00
- [`get_latest_slot_for_shard` ](#get_latest_slot_for_shard )
2020-01-24 23:43:43 +00:00
- [`get_offset_slots` ](#get_offset_slots )
- [Predicates ](#predicates )
- [Updated `is_valid_indexed_attestation` ](#updated-is_valid_indexed_attestation )
2020-04-28 03:28:21 +00:00
- [`is_shard_attestation` ](#is_shard_attestation )
2020-04-03 15:46:22 +00:00
- [`is_winning_attestation` ](#is_winning_attestation )
2020-01-24 23:43:43 +00:00
- [Block processing ](#block-processing )
- [Operations ](#operations )
- [New Attestation processing ](#new-attestation-processing )
- [`validate_attestation` ](#validate_attestation )
- [`apply_shard_transition` ](#apply_shard_transition )
- [`process_crosslink_for_shard` ](#process_crosslink_for_shard )
- [`process_crosslinks` ](#process_crosslinks )
2020-02-22 03:44:54 +00:00
- [`process_attestation` ](#process_attestation )
2020-04-30 18:25:18 +00:00
- [New deposits ](#new-deposits )
2020-01-24 23:43:43 +00:00
- [New Attester slashing processing ](#new-attester-slashing-processing )
- [Shard transition false positives ](#shard-transition-false-positives )
- [Light client processing ](#light-client-processing )
- [Epoch transition ](#epoch-transition )
- [Custody game updates ](#custody-game-updates )
- [Online-tracking ](#online-tracking )
- [Light client committee updates ](#light-client-committee-updates )
2019-10-12 03:05:08 +00:00
2020-01-24 23:43:43 +00:00
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2019-10-12 03:05:08 +00:00
## Introduction
2019-11-15 20:11:42 +00:00
This document describes the extensions made to the Phase 0 design of The Beacon Chain
to facilitate the new shards as part of Phase 1 of Eth2.
2019-10-12 03:05:08 +00:00
2019-11-18 23:40:02 +00:00
## Custom types
We define the following Python custom types for type hinting and readability:
| Name | SSZ equivalent | Description |
| - | - | - |
| `Shard` | `uint64` | a shard number |
2020-01-05 23:44:22 +00:00
| `OnlineEpochs` | `uint8` | online countdown epochs |
2019-11-18 23:40:02 +00:00
2019-10-12 03:05:08 +00:00
## Configuration
2019-11-15 20:11:42 +00:00
Configuration is not namespaced. Instead it is strictly an extension;
no constants of phase 0 change, but new constants are adopted for changing behaviors.
2019-10-12 03:05:08 +00:00
### Misc
2019-10-13 06:52:51 +00:00
| Name | Value | Unit | Duration |
| - | - | - | - |
2019-10-12 03:05:08 +00:00
| `MAX_SHARDS` | `2**10` (= 1024) |
2020-01-05 23:44:22 +00:00
| `ONLINE_PERIOD` | `OnlineEpochs(2**3)` (= 8) | online epochs | ~51 min |
2019-10-13 06:52:51 +00:00
| `LIGHT_CLIENT_COMMITTEE_SIZE` | `2**7` (= 128) |
2019-11-20 04:11:19 +00:00
| `LIGHT_CLIENT_COMMITTEE_PERIOD` | `Epoch(2**8)` (= 256) | epochs | ~27 hours |
| `SHARD_COMMITTEE_PERIOD` | `Epoch(2**8)` (= 256) | epochs | ~27 hours |
2020-01-08 10:19:18 +00:00
| `MAX_SHARD_BLOCK_SIZE` | `2**20` (= 1,048,576) | |
| `TARGET_SHARD_BLOCK_SIZE` | `2**18` (= 262,144) | |
2020-02-28 19:20:37 +00:00
| `SHARD_BLOCK_OFFSETS` | `[1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233]` | |
2019-10-29 17:43:13 +00:00
| `MAX_SHARD_BLOCKS_PER_ATTESTATION` | `len(SHARD_BLOCK_OFFSETS)` | |
2019-11-20 04:11:19 +00:00
| `MAX_GASPRICE` | `Gwei(2**14)` (= 16,384) | Gwei | |
2020-03-25 06:59:41 +00:00
| `MIN_GASPRICE` | `Gwei(2**3)` (= 8) | Gwei | |
2019-10-29 18:12:55 +00:00
| `GASPRICE_ADJUSTMENT_COEFFICIENT` | `2**3` (= 8) | |
2020-01-03 14:49:23 +00:00
| `DOMAIN_SHARD_PROPOSAL` | `DomainType('0x80000000')` | |
| `DOMAIN_SHARD_COMMITTEE` | `DomainType('0x81000000')` | |
| `DOMAIN_LIGHT_CLIENT` | `DomainType('0x82000000')` | |
2020-04-24 16:06:27 +00:00
| `MAX_CUSTODY_CHUNK_CHALLENGE_RECORDS` | `2**20` (= 1,048,576) |
| `BYTES_PER_CUSTODY_CHUNK` | `2**12` | bytes |
2020-04-27 15:08:49 +00:00
| `CUSTODY_RESPONSE_DEPTH` | `ceillog2(MAX_SHARD_BLOCK_SIZE // BYTES_PER_CUSTODY_CHUNK) | - | - |
2020-04-24 16:06:27 +00:00
## New containers
### `CustodyChunkChallenge`
```python
class CustodyChunkChallenge(Container):
responder_index: ValidatorIndex
shard_transition: ShardTransition
attestation: Attestation
data_index: uint64
chunk_index: uint64
```
### `CustodyChunkChallengeRecord`
```python
class CustodyChunkChallengeRecord(Container):
challenge_index: uint64
challenger_index: ValidatorIndex
responder_index: ValidatorIndex
inclusion_epoch: Epoch
data_root: Root
chunk_index: uint64
```
#### `CustodyChunkResponse`
```python
class CustodyChunkResponse(Container):
challenge_index: uint64
chunk_index: uint64
chunk: ByteVector[BYTES_PER_CUSTODY_CHUNK]
2020-04-27 15:08:49 +00:00
branch: Vector[Root, CUSTODY_RESPONSE_DEPTH]
2020-04-24 16:06:27 +00:00
```
#### `CustodySlashing`
```python
class CustodySlashing(Container):
# Attestation.custody_bits_blocks[data_index][committee.index(malefactor_index)] is the target custody bit to check.
# (Attestation.data.shard_transition_root as ShardTransition).shard_data_roots[data_index] is the root of the data.
data_index: uint64
malefactor_index: ValidatorIndex
malefactor_secret: BLSSignature
whistleblower_index: ValidatorIndex
shard_transition: ShardTransition
attestation: Attestation
data: ByteList[MAX_SHARD_BLOCK_SIZE]
```
#### `SignedCustodySlashing`
```python
class SignedCustodySlashing(Container):
message: CustodySlashing
signature: BLSSignature
```
#### `CustodyKeyReveal`
```python
class CustodyKeyReveal(Container):
# Index of the validator whose key is being revealed
revealer_index: ValidatorIndex
# Reveal (masked signature)
reveal: BLSSignature
```
#### `EarlyDerivedSecretReveal`
Represents an early (punishable) reveal of one of the derived secrets, where derived secrets are RANDAO reveals and custody reveals (both are part of the same domain).
```python
class EarlyDerivedSecretReveal(Container):
# Index of the validator whose key is being revealed
revealed_index: ValidatorIndex
# RANDAO epoch of the key that is being revealed
epoch: Epoch
# Reveal (masked signature)
reveal: BLSSignature
# Index of the validator who revealed (whistleblower)
masker_index: ValidatorIndex
# Mask used to hide the actual reveal signature (prevent reveal from being stolen)
mask: Bytes32
```
2019-10-12 03:05:08 +00:00
2019-11-22 22:45:55 +00:00
## Updated containers
2019-10-12 03:05:08 +00:00
2019-11-22 22:45:55 +00:00
The following containers have updated definitions in Phase 1.
2019-11-03 20:06:19 +00:00
2019-11-22 22:45:55 +00:00
### Extended `AttestationData`
2019-10-27 01:01:10 +00:00
2019-10-29 17:43:13 +00:00
```python
2019-11-22 22:45:55 +00:00
class AttestationData(Container):
2019-10-12 03:05:08 +00:00
slot: Slot
2019-10-27 01:01:10 +00:00
index: CommitteeIndex
2019-10-12 03:05:08 +00:00
# LMD GHOST vote
2019-12-05 19:36:48 +00:00
beacon_block_root: Root
2019-10-12 03:05:08 +00:00
# FFG vote
source: Checkpoint
target: Checkpoint
2019-11-12 13:27:34 +00:00
# Current-slot shard block root
2019-12-05 19:36:48 +00:00
head_shard_root: Root
2019-11-01 14:58:13 +00:00
# Shard transition root
2019-12-05 19:36:48 +00:00
shard_transition_root: Root
2019-10-27 01:01:10 +00:00
```
2019-11-22 22:45:55 +00:00
### Extended `Attestation`
2019-10-12 03:05:08 +00:00
```python
class Attestation(Container):
aggregation_bits: Bitlist[MAX_VALIDATORS_PER_COMMITTEE]
data: AttestationData
2020-01-09 23:00:10 +00:00
custody_bits_blocks: List[Bitlist[MAX_VALIDATORS_PER_COMMITTEE], MAX_SHARD_BLOCKS_PER_ATTESTATION]
2019-10-27 01:01:10 +00:00
signature: BLSSignature
```
2019-11-22 22:45:55 +00:00
### Extended `PendingAttestation`
2019-11-01 14:58:13 +00:00
```python
2019-11-19 19:16:40 +00:00
class PendingAttestation(Container):
2019-11-01 14:58:13 +00:00
aggregation_bits: Bitlist[MAX_VALIDATORS_PER_COMMITTEE]
data: AttestationData
inclusion_delay: Slot
proposer_index: ValidatorIndex
2019-11-18 21:04:29 +00:00
crosslink_success: boolean
2019-11-01 14:58:13 +00:00
```
2020-05-01 18:25:11 +00:00
### Extended `IndexedAttestation`
2019-12-05 22:06:32 +00:00
```python
class IndexedAttestation(Container):
committee: List[ValidatorIndex, MAX_VALIDATORS_PER_COMMITTEE]
attestation: Attestation
```
2020-05-01 18:25:11 +00:00
### Extended `AttesterSlashing`
2019-12-05 22:06:32 +00:00
Note that the `attestation_1` and `attestation_2` have a new `IndexedAttestation` definition.
```python
class AttesterSlashing(Container):
attestation_1: IndexedAttestation
attestation_2: IndexedAttestation
```
2019-11-22 22:45:55 +00:00
### Extended `Validator`
2019-11-15 20:11:42 +00:00
```python
2019-11-19 19:16:40 +00:00
class Validator(Container):
2019-11-15 20:11:42 +00:00
pubkey: BLSPubkey
2019-12-05 19:36:48 +00:00
withdrawal_credentials: Bytes32 # Commitment to pubkey for withdrawals
2019-11-15 20:11:42 +00:00
effective_balance: Gwei # Balance at stake
slashed: boolean
# Status epochs
activation_eligibility_epoch: Epoch # When criteria for activation were met
activation_epoch: Epoch
exit_epoch: Epoch
withdrawable_epoch: Epoch # When validator can withdraw funds
2019-11-16 10:13:47 +00:00
# Custody game
2019-11-15 20:11:42 +00:00
# next_custody_secret_to_reveal is initialised to the custody period
# (of the particular validator) in which the validator is activated
# = get_custody_period_for_validator(...)
next_custody_secret_to_reveal: uint64
2020-04-27 15:08:49 +00:00
# TODO: The max_reveal_lateness doesn't really make sense anymore.
# So how do we incentivise early custody key reveals now?
2020-04-30 23:16:00 +00:00
all_custody_secrets_revealed_epoch: Epoch # to be initialized to FAR_FUTURE_EPOCH
2019-11-15 20:11:42 +00:00
```
2019-10-12 14:59:51 +00:00
2019-11-22 22:45:55 +00:00
### Extended `BeaconBlockBody`
2019-11-15 22:42:28 +00:00
```python
2019-11-19 19:16:40 +00:00
class BeaconBlockBody(Container):
2019-11-15 22:42:28 +00:00
randao_reveal: BLSSignature
eth1_data: Eth1Data # Eth1 data vote
graffiti: Bytes32 # Arbitrary data
# Slashings
proposer_slashings: List[ProposerSlashing, MAX_PROPOSER_SLASHINGS]
attester_slashings: List[AttesterSlashing, MAX_ATTESTER_SLASHINGS]
# Attesting
attestations: List[Attestation, MAX_ATTESTATIONS]
2019-11-16 10:17:39 +00:00
# Entry & exit
2019-11-15 22:42:28 +00:00
deposits: List[Deposit, MAX_DEPOSITS]
2019-12-05 20:49:52 +00:00
voluntary_exits: List[SignedVoluntaryExit, MAX_VOLUNTARY_EXITS]
2019-11-15 22:42:28 +00:00
# Custody game
2019-12-05 20:49:52 +00:00
custody_slashings: List[SignedCustodySlashing, MAX_CUSTODY_SLASHINGS]
2019-11-16 10:13:47 +00:00
custody_key_reveals: List[CustodyKeyReveal, MAX_CUSTODY_KEY_REVEALS]
early_derived_secret_reveals: List[EarlyDerivedSecretReveal, MAX_EARLY_DERIVED_SECRET_REVEALS]
2019-11-15 22:42:28 +00:00
# Shards
shard_transitions: Vector[ShardTransition, MAX_SHARDS]
# Light clients
2020-01-05 23:17:48 +00:00
light_client_signature_bitfield: Bitvector[LIGHT_CLIENT_COMMITTEE_SIZE]
2019-11-15 22:42:28 +00:00
light_client_signature: BLSSignature
```
2019-11-15 20:11:42 +00:00
2019-11-22 22:45:55 +00:00
### Extended `BeaconBlock`
2019-10-12 14:59:51 +00:00
2019-11-16 10:13:47 +00:00
Note that the `body` has a new `BeaconBlockBody` definition.
2019-10-12 14:59:51 +00:00
```python
2019-11-19 19:16:40 +00:00
class BeaconBlock(Container):
2019-11-15 20:11:42 +00:00
slot: Slot
2020-02-17 19:02:24 +00:00
proposer_index: ValidatorIndex
2019-12-05 19:36:48 +00:00
parent_root: Root
state_root: Root
2019-11-15 20:11:42 +00:00
body: BeaconBlockBody
2019-12-05 20:49:52 +00:00
```
#### Extended `SignedBeaconBlock`
Note that the `message` has a new `BeaconBlock` definition.
```python
class SignedBeaconBlock(Container):
message: BeaconBlock
2019-11-15 20:11:42 +00:00
signature: BLSSignature
```
2019-11-22 22:45:55 +00:00
### Extended `BeaconState`
2019-11-15 20:11:42 +00:00
2019-11-16 10:13:47 +00:00
Note that aside from the new additions, `Validator` and `PendingAttestation` have new definitions.
2019-11-15 20:11:42 +00:00
```python
2019-11-19 19:16:40 +00:00
class BeaconState(Container):
2019-11-15 20:11:42 +00:00
# Versioning
genesis_time: uint64
2020-03-05 16:21:32 +00:00
genesis_validators_root: Root
2019-11-15 20:11:42 +00:00
slot: Slot
fork: Fork
# History
latest_block_header: BeaconBlockHeader
2019-12-05 19:36:48 +00:00
block_roots: Vector[Root, SLOTS_PER_HISTORICAL_ROOT]
state_roots: Vector[Root, SLOTS_PER_HISTORICAL_ROOT]
historical_roots: List[Root, HISTORICAL_ROOTS_LIMIT]
2019-11-15 20:11:42 +00:00
# Eth1
eth1_data: Eth1Data
2020-03-10 17:36:53 +00:00
eth1_data_votes: List[Eth1Data, EPOCHS_PER_ETH1_VOTING_PERIOD * SLOTS_PER_EPOCH]
2019-11-15 20:11:42 +00:00
eth1_deposit_index: uint64
# Registry
validators: List[Validator, VALIDATOR_REGISTRY_LIMIT]
balances: List[Gwei, VALIDATOR_REGISTRY_LIMIT]
# Randomness
2019-12-05 19:36:48 +00:00
randao_mixes: Vector[Root, EPOCHS_PER_HISTORICAL_VECTOR]
2019-11-15 20:11:42 +00:00
# Slashings
slashings: Vector[Gwei, EPOCHS_PER_SLASHINGS_VECTOR] # Per-epoch sums of slashed effective balances
# Attestations
previous_epoch_attestations: List[PendingAttestation, MAX_ATTESTATIONS * SLOTS_PER_EPOCH]
current_epoch_attestations: List[PendingAttestation, MAX_ATTESTATIONS * SLOTS_PER_EPOCH]
# Finality
justification_bits: Bitvector[JUSTIFICATION_BITS_LENGTH] # Bit set for every recent justified epoch
previous_justified_checkpoint: Checkpoint # Previous epoch snapshot
current_justified_checkpoint: Checkpoint
finalized_checkpoint: Checkpoint
# Phase 1
2019-11-16 11:23:45 +00:00
shard_states: List[ShardState, MAX_SHARDS]
2020-01-05 23:44:22 +00:00
online_countdown: List[OnlineEpochs, VALIDATOR_REGISTRY_LIMIT] # not a raw byte array, considered its large size.
2019-11-15 20:11:42 +00:00
current_light_committee: CompactCommittee
next_light_committee: CompactCommittee
2019-11-16 11:23:45 +00:00
# Custody game
2019-11-15 20:11:42 +00:00
# Future derived secrets already exposed; contains the indices of the exposed validator
# at RANDAO reveal period % EARLY_DERIVED_SECRET_PENALTY_MAX_FUTURE_EPOCHS
2019-11-19 19:16:40 +00:00
exposed_derived_secrets: Vector[List[ValidatorIndex, MAX_EARLY_DERIVED_SECRET_REVEALS * SLOTS_PER_EPOCH],
2019-11-15 20:11:42 +00:00
EARLY_DERIVED_SECRET_PENALTY_MAX_FUTURE_EPOCHS]
2020-04-24 16:06:27 +00:00
custody_chunk_challenge_records: List[CustodyChunkChallengeRecord, MAX_CUSTODY_CHUNK_CHALLENGE_RECORDS]
custody_chunk_challenge_index: uint64
2019-10-12 14:59:51 +00:00
```
2019-11-22 22:45:55 +00:00
## New containers
The following containers are new in Phase 1.
2020-03-31 04:37:36 +00:00
### `ShardBlock`
2019-11-22 22:45:55 +00:00
```python
2020-03-31 04:37:36 +00:00
class ShardBlock(Container):
2019-12-05 19:36:48 +00:00
shard_parent_root: Root
beacon_parent_root: Root
2019-11-22 22:45:55 +00:00
slot: Slot
2020-04-02 02:43:50 +00:00
proposer_index: ValidatorIndex
2020-01-08 10:19:18 +00:00
body: ByteList[MAX_SHARD_BLOCK_SIZE]
2020-03-31 04:37:36 +00:00
```
### `SignedShardBlock`
```python
class SignedShardBlock(Container):
message: ShardBlock
2019-11-22 22:45:55 +00:00
signature: BLSSignature
```
2020-03-31 04:37:36 +00:00
### `ShardBlockHeader`
2019-11-22 22:45:55 +00:00
```python
2020-03-31 04:37:36 +00:00
class ShardBlockHeader(Container):
2019-12-05 19:36:48 +00:00
shard_parent_root: Root
beacon_parent_root: Root
2019-11-22 22:45:55 +00:00
slot: Slot
2020-04-02 02:43:50 +00:00
proposer_index: ValidatorIndex
2019-12-05 19:36:48 +00:00
body_root: Root
2019-11-22 22:45:55 +00:00
```
### `ShardState`
```python
class ShardState(Container):
slot: Slot
gasprice: Gwei
2020-04-20 08:57:29 +00:00
transition_digest: Bytes32
2019-12-05 19:36:48 +00:00
latest_block_root: Root
2019-11-22 22:45:55 +00:00
```
### `ShardTransition`
```python
class ShardTransition(Container):
# Starting from slot
start_slot: Slot
# Shard block lengths
shard_block_lengths: List[uint64, MAX_SHARD_BLOCKS_PER_ATTESTATION]
# Shard data roots
2020-04-27 15:08:49 +00:00
# The root is of ByteVector[MAX_]
2020-01-08 10:19:18 +00:00
shard_data_roots: List[Bytes32, MAX_SHARD_BLOCKS_PER_ATTESTATION]
2019-11-22 22:45:55 +00:00
# Intermediate shard states
shard_states: List[ShardState, MAX_SHARD_BLOCKS_PER_ATTESTATION]
# Proposer signature aggregate
proposer_signature_aggregate: BLSSignature
```
### `CompactCommittee`
```python
class CompactCommittee(Container):
pubkeys: List[BLSPubkey, MAX_VALIDATORS_PER_COMMITTEE]
compact_validators: List[uint64, MAX_VALIDATORS_PER_COMMITTEE]
```
### `AttestationCustodyBitWrapper`
```python
class AttestationCustodyBitWrapper(Container):
2019-12-05 19:36:48 +00:00
attestation_data_root: Root
2019-11-22 22:45:55 +00:00
block_index: uint64
bit: boolean
```
2019-11-15 20:11:42 +00:00
## Helper functions
### Misc
2020-04-28 03:28:21 +00:00
#### `compute_previous_slot`
2020-01-05 19:11:55 +00:00
```python
2020-04-28 03:28:21 +00:00
def compute_previous_slot(slot: Slot) -> Slot:
2020-01-05 19:11:55 +00:00
if slot > 0:
return Slot(slot - 1)
else:
return Slot(0)
```
2019-11-15 20:11:42 +00:00
#### `pack_compact_validator`
2019-10-13 06:52:51 +00:00
```python
2020-03-31 10:21:33 +00:00
def pack_compact_validator(index: ValidatorIndex, slashed: bool, balance_in_increments: uint64) -> uint64:
2019-10-13 06:52:51 +00:00
"""
2020-03-31 10:21:33 +00:00
Create a compact validator object representing index, slashed status, and compressed balance.
2019-10-13 06:52:51 +00:00
Takes as input balance-in-increments (// EFFECTIVE_BALANCE_INCREMENT) to preserve symmetry with
the unpacking function.
"""
return (index < < 16 ) + ( slashed < < 15 ) + balance_in_increments
```
2020-03-31 10:21:33 +00:00
#### `unpack_compact_validator`
```python
def unpack_compact_validator(compact_validator: uint64) -> Tuple[ValidatorIndex, bool, uint64]:
"""
Return validator index, slashed, balance // EFFECTIVE_BALANCE_INCREMENT
"""
return (
ValidatorIndex(compact_validator >> 16),
bool((compact_validator >> 15) % 2),
compact_validator & (2**15 - 1),
)
```
2019-11-15 20:11:42 +00:00
#### `committee_to_compact_committee`
2019-10-13 06:52:51 +00:00
```python
def committee_to_compact_committee(state: BeaconState, committee: Sequence[ValidatorIndex]) -> CompactCommittee:
"""
Given a state and a list of validator indices, outputs the CompactCommittee representing them.
"""
validators = [state.validators[i] for i in committee]
compact_validators = [
pack_compact_validator(i, v.slashed, v.effective_balance // EFFECTIVE_BALANCE_INCREMENT)
for i, v in zip(committee, validators)
]
pubkeys = [v.pubkey for v in validators]
return CompactCommittee(pubkeys=pubkeys, compact_validators=compact_validators)
```
2020-01-16 00:43:11 +00:00
#### `compute_shard_from_committee_index`
```python
def compute_shard_from_committee_index(state: BeaconState, index: CommitteeIndex, slot: Slot) -> Shard:
active_shards = get_active_shard_count(state)
return Shard((index + get_start_shard(state, slot)) % active_shards)
```
2020-04-03 16:29:35 +00:00
#### `compute_offset_slots`
```python
def compute_offset_slots(start_slot: Slot, end_slot: Slot) -> Sequence[Slot]:
"""
Return the offset slots that are greater than ``start_slot`` and less than ``end_slot``.
"""
return [Slot(start_slot + x) for x in SHARD_BLOCK_OFFSETS if start_slot + x < end_slot ]
```
2020-04-16 11:43:48 +00:00
#### `compute_updated_gasprice`
```python
def compute_updated_gasprice(prev_gasprice: Gwei, length: uint8) -> Gwei:
if length > TARGET_SHARD_BLOCK_SIZE:
delta = (prev_gasprice * (length - TARGET_SHARD_BLOCK_SIZE)
// TARGET_SHARD_BLOCK_SIZE // GASPRICE_ADJUSTMENT_COEFFICIENT)
return min(prev_gasprice + delta, MAX_GASPRICE)
else:
delta = (prev_gasprice * (TARGET_SHARD_BLOCK_SIZE - length)
// TARGET_SHARD_BLOCK_SIZE // GASPRICE_ADJUSTMENT_COEFFICIENT)
return max(prev_gasprice, MIN_GASPRICE + delta) - delta
```
2019-11-15 20:11:42 +00:00
### Beacon state accessors
2020-01-05 19:20:20 +00:00
#### `get_active_shard_count`
```python
def get_active_shard_count(state: BeaconState) -> uint64:
return len(state.shard_states) # May adapt in the future, or change over time.
```
2019-11-16 10:13:47 +00:00
#### `get_online_validator_indices`
2019-11-15 20:11:42 +00:00
```python
2019-11-16 10:13:47 +00:00
def get_online_validator_indices(state: BeaconState) -> Set[ValidatorIndex]:
2019-11-15 20:11:42 +00:00
active_validators = get_active_validator_indices(state, get_current_epoch(state))
return set([i for i in active_validators if state.online_countdown[i] != 0])
```
#### `get_shard_committee`
2019-11-12 14:13:47 +00:00
```python
def get_shard_committee(beacon_state: BeaconState, epoch: Epoch, shard: Shard) -> Sequence[ValidatorIndex]:
2020-04-06 11:30:32 +00:00
source_epoch = epoch - epoch % SHARD_COMMITTEE_PERIOD
2019-11-12 14:13:47 +00:00
if source_epoch > 0:
source_epoch -= SHARD_COMMITTEE_PERIOD
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
seed = get_seed(beacon_state, source_epoch, DOMAIN_SHARD_COMMITTEE)
2020-04-16 09:18:11 +00:00
active_shard_count = get_active_shard_count(beacon_state)
2020-04-02 03:20:22 +00:00
return compute_committee(
indices=active_validator_indices,
seed=seed,
index=shard,
2020-04-16 09:18:11 +00:00
count=active_shard_count,
2020-04-02 03:20:22 +00:00
)
2019-11-12 14:13:47 +00:00
```
2019-11-15 20:11:42 +00:00
#### `get_light_client_committee`
2019-10-27 01:01:10 +00:00
```python
def get_light_client_committee(beacon_state: BeaconState, epoch: Epoch) -> Sequence[ValidatorIndex]:
2020-04-02 03:20:22 +00:00
source_epoch = epoch - epoch % LIGHT_CLIENT_COMMITTEE_PERIOD
2019-11-01 14:58:13 +00:00
if source_epoch > 0:
source_epoch -= LIGHT_CLIENT_COMMITTEE_PERIOD
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
2019-11-18 23:40:02 +00:00
seed = get_seed(beacon_state, source_epoch, DOMAIN_LIGHT_CLIENT)
2020-04-02 03:20:22 +00:00
return compute_committee(
indices=active_validator_indices,
seed=seed,
index=0,
2020-04-28 02:46:13 +00:00
count=get_active_shard_count(beacon_state),
2020-04-02 03:20:22 +00:00
)[:TARGET_COMMITTEE_SIZE]
```
#### `get_shard_proposer_index`
```python
def get_shard_proposer_index(beacon_state: BeaconState, slot: Slot, shard: Shard) -> ValidatorIndex:
committee = get_shard_committee(beacon_state, compute_epoch_at_slot(slot), shard)
r = bytes_to_int(get_seed(beacon_state, get_current_epoch(beacon_state), DOMAIN_SHARD_COMMITTEE)[:8])
return committee[r % len(committee)]
2019-10-27 01:01:10 +00:00
```
2019-11-15 20:11:42 +00:00
#### `get_indexed_attestation`
2019-10-27 01:01:10 +00:00
```python
2019-12-05 22:06:32 +00:00
def get_indexed_attestation(beacon_state: BeaconState, attestation: Attestation) -> IndexedAttestation:
2019-11-04 16:50:09 +00:00
committee = get_beacon_committee(beacon_state, attestation.data.slot, attestation.data.index)
2019-12-05 22:06:32 +00:00
return IndexedAttestation(
committee=committee,
attestation=attestation,
)
2019-10-27 01:01:10 +00:00
```
2019-11-18 23:40:02 +00:00
#### `get_start_shard`
```python
def get_start_shard(state: BeaconState, slot: Slot) -> Shard:
# TODO: implement start shard logic
return Shard(0)
```
2019-11-15 20:11:42 +00:00
#### `get_shard`
```python
def get_shard(state: BeaconState, attestation: Attestation) -> Shard:
2020-01-16 00:43:11 +00:00
return compute_shard_from_committee_index(state, attestation.data.index, attestation.data.slot)
2019-11-15 20:11:42 +00:00
```
2020-02-28 19:20:37 +00:00
#### `get_latest_slot_for_shard`
2019-11-23 01:09:31 +00:00
```python
2020-02-28 19:20:37 +00:00
def get_latest_slot_for_shard(state: BeaconState, shard: Shard) -> Slot:
return state.shard_states[shard].slot
2019-11-23 01:09:31 +00:00
```
2019-11-15 20:11:42 +00:00
#### `get_offset_slots`
```python
2020-04-03 15:19:56 +00:00
def get_offset_slots(state: BeaconState, shard: Shard) -> Sequence[Slot]:
return compute_offset_slots(state.shard_states[shard].slot, state.slot)
2019-11-15 20:11:42 +00:00
```
### Predicates
2019-11-16 10:13:47 +00:00
#### Updated `is_valid_indexed_attestation`
Note that this replaces the Phase 0 `is_valid_indexed_attestation` .
2019-10-27 01:01:10 +00:00
2019-10-28 09:18:27 +00:00
```python
2019-12-05 22:06:32 +00:00
def is_valid_indexed_attestation(state: BeaconState, indexed_attestation: IndexedAttestation) -> bool:
2019-10-27 01:01:10 +00:00
"""
Check if ``indexed_attestation`` has valid indices and signature.
"""
# Verify aggregate signature
all_pubkeys = []
2020-01-09 13:56:06 +00:00
all_signing_roots = []
2019-11-23 01:17:38 +00:00
attestation = indexed_attestation.attestation
2020-01-13 17:55:21 +00:00
domain = get_domain(state, DOMAIN_BEACON_ATTESTER, attestation.data.target.epoch)
2019-11-23 01:17:38 +00:00
aggregation_bits = attestation.aggregation_bits
2019-11-04 16:50:09 +00:00
assert len(aggregation_bits) == len(indexed_attestation.committee)
2020-02-22 03:44:54 +00:00
2020-01-14 00:34:38 +00:00
if len(attestation.custody_bits_blocks) == 0:
# fall back on phase0 behavior if there is no shard data.
for participant, abit in zip(indexed_attestation.committee, aggregation_bits):
2019-11-04 16:50:09 +00:00
if abit:
all_pubkeys.append(state.validators[participant].pubkey)
2020-01-14 00:34:38 +00:00
signing_root = compute_signing_root(indexed_attestation.attestation.data, domain)
return bls.FastAggregateVerify(all_pubkeys, signing_root, signature=attestation.signature)
else:
for i, custody_bits in enumerate(attestation.custody_bits_blocks):
assert len(custody_bits) == len(indexed_attestation.committee)
for participant, abit, cbit in zip(indexed_attestation.committee, aggregation_bits, custody_bits):
if abit:
all_pubkeys.append(state.validators[participant].pubkey)
# Note: only 2N distinct message hashes
2020-02-26 17:20:19 +00:00
attestation_wrapper = AttestationCustodyBitWrapper(
attestation_data_root=hash_tree_root(attestation.data),
block_index=i,
bit=cbit
)
all_signing_roots.append(compute_signing_root(attestation_wrapper, domain))
2020-01-14 00:34:38 +00:00
else:
assert not cbit
return bls.AggregateVerify(zip(all_pubkeys, all_signing_roots), signature=attestation.signature)
2019-10-27 01:01:10 +00:00
```
2020-05-01 18:25:11 +00:00
#### `is_shard_attestation`
```python
def is_shard_attestation(state: BeaconState,
attestation: Attestation,
committee_index: CommitteeIndex) -> bool:
if not (
attestation.data.index == committee_index
and attestation.data.slot + MIN_ATTESTATION_INCLUSION_DELAY == state.slot # Must be on-time attestation
# TODO: MIN_ATTESTATION_INCLUSION_DELAY should always be 1
):
return False
return True
```
#### `is_winning_attestation`
```python
def is_winning_attestation(state: BeaconState,
attestation: PendingAttestation,
committee_index: CommitteeIndex,
winning_root: Root) -> bool:
"""
Check if ``attestation`` helped contribute to the successful crosslink of
``winning_root`` formed by ``committee_index`` committee at the current slot.
"""
return (
attestation.data.slot == state.slot
and attestation.data.index == committee_index
and attestation.data.shard_transition_root == winning_root
)
```
2019-11-03 16:17:46 +00:00
2019-11-15 20:11:42 +00:00
### Block processing
2019-11-06 22:19:00 +00:00
```python
2019-11-15 20:11:42 +00:00
def process_block(state: BeaconState, block: BeaconBlock) -> None:
process_block_header(state, block)
process_randao(state, block.body)
process_eth1_data(state, block.body)
2020-01-05 22:51:24 +00:00
process_light_client_signatures(state, block.body)
2019-11-15 20:11:42 +00:00
process_operations(state, block.body)
2020-04-28 03:28:21 +00:00
verify_shard_transition_false_positives(state, block.body)
2019-11-12 13:27:34 +00:00
```
2019-11-15 20:11:42 +00:00
#### Operations
2019-10-12 03:05:08 +00:00
2019-10-13 08:42:55 +00:00
```python
2019-11-15 20:11:42 +00:00
def process_operations(state: BeaconState, body: BeaconBlockBody) -> None:
# Verify that outstanding deposits are processed up to the maximum number of deposits
assert len(body.deposits) == min(MAX_DEPOSITS, state.eth1_data.deposit_count - state.eth1_deposit_index)
2020-02-06 18:58:21 +00:00
2019-11-20 03:43:32 +00:00
def for_ops(operations: Sequence[Any], fn: Callable[[BeaconState, Any], None]) -> None:
2019-11-15 20:11:42 +00:00
for operation in operations:
fn(state, operation)
2020-02-06 18:58:21 +00:00
2019-11-16 10:13:47 +00:00
for_ops(body.proposer_slashings, process_proposer_slashing)
for_ops(body.attester_slashings, process_attester_slashing)
2019-11-15 20:11:42 +00:00
# New attestation processing
2020-02-06 18:58:21 +00:00
for_ops(body.attestations, process_attestation)
2019-11-16 10:13:47 +00:00
for_ops(body.deposits, process_deposit)
for_ops(body.voluntary_exits, process_voluntary_exit)
2019-11-15 20:11:42 +00:00
2019-11-15 22:42:28 +00:00
# See custody game spec.
process_custody_game_operations(state, body)
2020-02-06 18:58:21 +00:00
process_crosslinks(state, body.shard_transitions, body.attestations)
2019-11-15 20:11:42 +00:00
# TODO process_operations(body.shard_receipt_proofs, process_shard_receipt_proofs)
2019-10-12 03:05:08 +00:00
```
2019-11-15 20:11:42 +00:00
##### New Attestation processing
2019-11-03 16:17:46 +00:00
2019-11-15 20:11:42 +00:00
###### `validate_attestation`
2019-10-12 03:05:08 +00:00
```python
2019-11-05 18:33:26 +00:00
def validate_attestation(state: BeaconState, attestation: Attestation) -> None:
2019-10-12 03:05:08 +00:00
data = attestation.data
2019-11-23 01:09:31 +00:00
assert data.index < get_committee_count_at_slot ( state , data . slot )
2020-01-05 19:20:20 +00:00
assert data.index < get_active_shard_count ( state )
2019-11-23 01:09:31 +00:00
assert data.target.epoch in (get_previous_epoch(state), get_current_epoch(state))
2020-02-06 18:58:21 +00:00
assert data.target.epoch == compute_epoch_at_slot(data.slot)
2019-11-23 01:09:31 +00:00
assert data.slot + MIN_ATTESTATION_INCLUSION_DELAY < = state.slot < = data.slot + SLOTS_PER_EPOCH
committee = get_beacon_committee(state, data.slot, data.index)
assert len(attestation.aggregation_bits) == len(committee)
if attestation.data.target.epoch == get_current_epoch(state):
assert attestation.data.source == state.current_justified_checkpoint
else:
assert attestation.data.source == state.previous_justified_checkpoint
2019-11-03 16:17:46 +00:00
shard = get_shard(state, attestation)
2019-10-12 03:05:08 +00:00
2020-04-03 15:46:22 +00:00
# Type 1: on-time attestations, the custody bits should be non-empty.
2020-01-09 23:00:10 +00:00
if attestation.custody_bits_blocks != []:
2020-02-22 03:44:54 +00:00
# Ensure on-time attestation
2019-11-23 01:09:31 +00:00
assert data.slot + MIN_ATTESTATION_INCLUSION_DELAY == state.slot
2019-10-12 03:05:08 +00:00
# Correct data root count
2020-04-03 15:19:56 +00:00
assert len(attestation.custody_bits_blocks) == len(get_offset_slots(state, shard))
2019-10-12 03:05:08 +00:00
# Correct parent block root
2020-04-28 03:28:21 +00:00
assert data.beacon_block_root == get_block_root_at_slot(state, compute_previous_slot(state.slot))
2020-04-03 15:46:22 +00:00
# Type 2: no shard transition, no custody bits
2019-10-12 03:05:08 +00:00
else:
2020-02-22 03:44:54 +00:00
# Ensure delayed attestation
2020-02-22 15:21:39 +00:00
assert data.slot + MIN_ATTESTATION_INCLUSION_DELAY < state.slot
2020-02-22 03:44:54 +00:00
# Late attestations cannot have a shard transition root
2019-12-05 19:36:48 +00:00
assert data.shard_transition_root == Root()
2020-02-22 03:44:54 +00:00
# Signature check
assert is_valid_indexed_attestation(state, get_indexed_attestation(state, attestation))
2019-11-03 16:17:46 +00:00
```
2019-10-12 03:05:08 +00:00
2019-11-15 20:11:42 +00:00
###### `apply_shard_transition`
2019-11-03 16:17:46 +00:00
```python
def apply_shard_transition(state: BeaconState, shard: Shard, transition: ShardTransition) -> None:
2020-04-20 08:57:29 +00:00
# TODO: only need to check it once when phase 1 starts
assert state.slot > PHASE_1_GENESIS_SLOT
2019-11-03 16:17:46 +00:00
# Correct data root count
2020-04-03 15:19:56 +00:00
offset_slots = get_offset_slots(state, shard)
2019-11-18 22:07:50 +00:00
assert (
len(transition.shard_data_roots)
== len(transition.shard_states)
== len(transition.shard_block_lengths)
== len(offset_slots)
)
2020-02-28 19:20:37 +00:00
assert transition.start_slot == offset_slots[0]
2019-11-03 16:17:46 +00:00
2019-11-03 20:06:19 +00:00
headers = []
proposers = []
2019-11-03 16:17:46 +00:00
prev_gasprice = state.shard_states[shard].gasprice
2019-11-12 13:27:34 +00:00
shard_parent_root = state.shard_states[shard].latest_block_root
2019-11-03 20:06:19 +00:00
for i in range(len(offset_slots)):
2020-04-06 11:30:32 +00:00
shard_block_length = transition.shard_block_lengths[i]
2019-11-18 22:07:50 +00:00
shard_state = transition.shard_states[i]
2020-05-01 17:56:25 +00:00
# Verify correct calculation of gas prices and slots
assert shard_state.gasprice == compute_updated_gasprice(prev_gasprice, shard_block_length)
assert shard_state.slot == offset_slots[i]
# Collect the non-empty proposals result
is_empty_proposal = shard_block_length == 0
2020-04-06 11:30:32 +00:00
if not is_empty_proposal:
2020-04-16 11:43:48 +00:00
proposal_index = get_shard_proposer_index(state, offset_slots[i], shard)
# Reconstruct shard headers
header = ShardBlockHeader(
2019-11-05 18:33:41 +00:00
shard_parent_root=shard_parent_root,
2020-04-16 11:43:48 +00:00
beacon_parent_root=get_block_root_at_slot(state, offset_slots[i]),
proposer_index=proposal_index,
2019-11-03 20:06:19 +00:00
slot=offset_slots[i],
2020-01-08 10:19:18 +00:00
body_root=transition.shard_data_roots[i]
2020-04-16 11:43:48 +00:00
)
shard_parent_root = hash_tree_root(header)
2020-04-06 11:30:32 +00:00
headers.append(header)
proposers.append(proposal_index)
2019-11-03 20:06:19 +00:00
2019-11-03 16:17:46 +00:00
prev_gasprice = shard_state.gasprice
2020-01-09 13:56:06 +00:00
pubkeys = [state.validators[proposer].pubkey for proposer in proposers]
2020-01-13 17:55:21 +00:00
signing_roots = [
compute_signing_root(header, get_domain(state, DOMAIN_SHARD_PROPOSAL, compute_epoch_at_slot(header.slot)))
for header in headers
]
2019-11-04 16:50:09 +00:00
# Verify combined proposer signature
2020-01-09 13:56:06 +00:00
assert bls.AggregateVerify(zip(pubkeys, signing_roots), signature=transition.proposer_signature_aggregate)
2019-11-03 20:06:19 +00:00
2019-11-03 16:17:46 +00:00
# Save updated state
2020-04-06 11:30:32 +00:00
state.shard_states[shard] = transition.shard_states[len(transition.shard_states) - 1]
2019-11-03 16:17:46 +00:00
state.shard_states[shard].slot = state.slot - 1
```
2019-10-12 14:59:51 +00:00
2019-11-23 01:09:31 +00:00
###### `process_crosslink_for_shard`
2019-10-12 03:05:08 +00:00
2019-11-03 16:17:46 +00:00
```python
2019-11-23 01:09:31 +00:00
def process_crosslink_for_shard(state: BeaconState,
2020-04-01 18:20:32 +00:00
committee_index: CommitteeIndex,
2019-11-23 01:09:31 +00:00
shard_transition: ShardTransition,
2019-12-05 19:36:48 +00:00
attestations: Sequence[Attestation]) -> Root:
2020-04-01 18:20:32 +00:00
committee = get_beacon_committee(state, state.slot, committee_index)
2019-11-16 10:13:47 +00:00
online_indices = get_online_validator_indices(state)
2020-04-01 18:20:32 +00:00
shard = compute_shard_from_committee_index(state, committee_index, state.slot)
2019-11-23 01:09:31 +00:00
# Loop over all shard transition roots
shard_transition_roots = set([a.data.shard_transition_root for a in attestations])
for shard_transition_root in sorted(shard_transition_roots):
transition_attestations = [a for a in attestations if a.data.shard_transition_root == shard_transition_root]
transition_participants: Set[ValidatorIndex] = set()
for attestation in transition_attestations:
participants = get_attesting_indices(state, attestation.data, attestation.aggregation_bits)
transition_participants = transition_participants.union(participants)
2020-05-01 17:39:03 +00:00
assert attestation.data.head_shard_root == shard_transition.shard_data_roots[
len(shard_transition.shard_data_roots) - 1
]
2019-11-23 01:09:31 +00:00
enough_online_stake = (
get_total_balance(state, online_indices.intersection(transition_participants)) * 3 >=
get_total_balance(state, online_indices.intersection(committee)) * 2
)
# If not enough stake, try next transition root
if not enough_online_stake:
continue
# Attestation < - > shard transition consistency
assert shard_transition_root == hash_tree_root(shard_transition)
# Apply transition
apply_shard_transition(state, shard, shard_transition)
# Apply proposer reward and cost
beacon_proposer_index = get_beacon_proposer_index(state)
estimated_attester_reward = sum([get_base_reward(state, attester) for attester in transition_participants])
proposer_reward = Gwei(estimated_attester_reward // PROPOSER_REWARD_QUOTIENT)
increase_balance(state, beacon_proposer_index, proposer_reward)
states_slots_lengths = zip(
shard_transition.shard_states,
2020-04-06 11:30:32 +00:00
get_offset_slots(state, shard),
2019-11-23 01:09:31 +00:00
shard_transition.shard_block_lengths
)
for shard_state, slot, length in states_slots_lengths:
2020-04-06 11:30:32 +00:00
proposer_index = get_shard_proposer_index(state, slot, shard)
2019-11-23 01:09:31 +00:00
decrease_balance(state, proposer_index, shard_state.gasprice * length)
# Return winning transition root
return shard_transition_root
# No winning transition root, ensure empty and return empty root
assert shard_transition == ShardTransition()
2019-12-05 19:36:48 +00:00
return Root()
2019-11-23 01:09:31 +00:00
```
###### `process_crosslinks`
```python
def process_crosslinks(state: BeaconState,
2020-02-06 18:58:21 +00:00
shard_transitions: Sequence[ShardTransition],
attestations: Sequence[Attestation]) -> None:
2020-01-16 00:43:11 +00:00
committee_count = get_committee_count_at_slot(state, state.slot)
for committee_index in map(CommitteeIndex, range(committee_count)):
shard = compute_shard_from_committee_index(state, committee_index, state.slot)
2020-02-06 18:58:21 +00:00
# All attestations in the block for this committee/shard and current slot
2020-04-28 03:28:21 +00:00
shard_transition = shard_transitions[shard]
2019-11-23 01:09:31 +00:00
shard_attestations = [
2019-11-18 22:07:50 +00:00
attestation for attestation in attestations
2020-04-28 03:28:21 +00:00
if is_shard_attestation(state, attestation, committee_index)
2019-11-18 22:07:50 +00:00
]
2020-04-28 03:28:21 +00:00
2020-04-01 18:20:32 +00:00
winning_root = process_crosslink_for_shard(state, committee_index, shard_transition, shard_attestations)
2019-12-05 19:36:48 +00:00
if winning_root != Root():
2020-02-06 18:58:21 +00:00
# Mark relevant pending attestations as creating a successful crosslink
for pending_attestation in state.current_epoch_attestations:
2020-04-03 15:46:22 +00:00
if is_winning_attestation(state, pending_attestation, committee_index, winning_root):
2020-02-06 18:58:21 +00:00
pending_attestation.crosslink_success = True
```
###### `process_attestation`
```python
def process_attestation(state: BeaconState, attestation: Attestation) -> None:
validate_attestation(state, attestation)
# Store pending attestation for epoch processing
pending_attestation = PendingAttestation(
aggregation_bits=attestation.aggregation_bits,
data=attestation.data,
inclusion_delay=state.slot - attestation.data.slot,
proposer_index=get_beacon_proposer_index(state),
2020-04-03 15:46:22 +00:00
crosslink_success=False, # To be filled in during process_crosslinks
2020-02-06 18:58:21 +00:00
)
if attestation.data.target.epoch == get_current_epoch(state):
state.current_epoch_attestations.append(pending_attestation)
else:
state.previous_epoch_attestations.append(pending_attestation)
2019-10-12 03:05:08 +00:00
```
2020-04-28 00:09:20 +00:00
##### New deposits
```python
def process_deposit(state: BeaconState, deposit: Deposit) -> None:
# Verify the Merkle branch
assert is_valid_merkle_branch(
leaf=hash_tree_root(deposit.data),
branch=deposit.proof,
depth=DEPOSIT_CONTRACT_TREE_DEPTH + 1, # Add 1 for the List length mix-in
index=state.eth1_deposit_index,
root=state.eth1_data.deposit_root,
)
# Deposits must be processed in order
state.eth1_deposit_index += 1
pubkey = deposit.data.pubkey
amount = deposit.data.amount
validator_pubkeys = [v.pubkey for v in state.validators]
if pubkey not in validator_pubkeys:
# Verify the deposit signature (proof of possession) which is not checked by the deposit contract
deposit_message = DepositMessage(
pubkey=deposit.data.pubkey,
withdrawal_credentials=deposit.data.withdrawal_credentials,
amount=deposit.data.amount,
)
domain = compute_domain(DOMAIN_DEPOSIT) # Fork-agnostic domain since deposits are valid across forks
signing_root = compute_signing_root(deposit_message, domain)
if not bls.Verify(pubkey, signing_root, deposit.data.signature):
return
# Add validator and balance entries
# TODO: This function is duplicated from phase 1 just because the validator definition
# has changed and we need to initialize it properly. Is there a better solution for
# this?
state.validators.append(Validator(
pubkey=pubkey,
withdrawal_credentials=deposit.data.withdrawal_credentials,
activation_eligibility_epoch=FAR_FUTURE_EPOCH,
activation_epoch=FAR_FUTURE_EPOCH,
exit_epoch=FAR_FUTURE_EPOCH,
withdrawable_epoch=FAR_FUTURE_EPOCH,
effective_balance=min(amount - amount % EFFECTIVE_BALANCE_INCREMENT, MAX_EFFECTIVE_BALANCE),
2020-04-30 23:16:00 +00:00
next_custody_secret_to_reveal=get_custody_period_for_validator(ValidatorIndex(len(state.validators)),
get_current_epoch(state)),
2020-04-28 00:09:20 +00:00
all_custody_secrets_revealed_epoch=FAR_FUTURE_EPOCH,
))
state.balances.append(amount)
else:
# Increase balance by deposit amount
index = ValidatorIndex(validator_pubkeys.index(pubkey))
increase_balance(state, index, amount)
```
2019-12-05 22:06:32 +00:00
##### New Attester slashing processing
```python
def get_indices_from_committee(
committee: List[ValidatorIndex, MAX_VALIDATORS_PER_COMMITTEE],
bits: Bitlist[MAX_VALIDATORS_PER_COMMITTEE]) -> List[ValidatorIndex, MAX_VALIDATORS_PER_COMMITTEE]:
assert len(bits) == len(committee)
return List[ValidatorIndex, MAX_VALIDATORS_PER_COMMITTEE](
[validator_index for i, validator_index in enumerate(committee) if bits[i]]
)
```
```python
def process_attester_slashing(state: BeaconState, attester_slashing: AttesterSlashing) -> None:
indexed_attestation_1 = attester_slashing.attestation_1
indexed_attestation_2 = attester_slashing.attestation_2
2020-02-26 17:20:19 +00:00
2019-12-05 22:06:32 +00:00
assert is_slashable_attestation_data(
indexed_attestation_1.attestation.data,
indexed_attestation_2.attestation.data,
)
assert is_valid_indexed_attestation(state, indexed_attestation_1)
assert is_valid_indexed_attestation(state, indexed_attestation_2)
indices_1 = get_indices_from_committee(
indexed_attestation_1.committee,
indexed_attestation_1.attestation.aggregation_bits,
)
indices_2 = get_indices_from_committee(
indexed_attestation_2.committee,
indexed_attestation_2.attestation.aggregation_bits,
)
slashed_any = False
indices = set(indices_1).intersection(indices_2)
for index in sorted(indices):
if is_slashable_validator(state.validators[index], get_current_epoch(state)):
slash_validator(state, index)
slashed_any = True
assert slashed_any
```
2019-11-15 20:11:42 +00:00
#### Shard transition false positives
2019-10-29 17:43:13 +00:00
```python
2019-11-15 22:42:28 +00:00
def verify_shard_transition_false_positives(state: BeaconState, block_body: BeaconBlockBody) -> None:
2019-10-29 17:43:13 +00:00
# Verify that a `shard_transition` in a block is empty if an attestation was not processed for it
2020-01-05 19:20:20 +00:00
for shard in range(get_active_shard_count(state)):
2019-10-29 17:43:13 +00:00
if state.shard_states[shard].slot != state.slot - 1:
2020-01-05 23:44:22 +00:00
assert block_body.shard_transitions[shard] == ShardTransition()
2019-10-29 17:43:13 +00:00
```
2019-10-13 08:13:52 +00:00
2019-11-15 20:11:42 +00:00
#### Light client processing
2019-10-13 06:52:51 +00:00
```python
2019-11-15 22:42:28 +00:00
def process_light_client_signatures(state: BeaconState, block_body: BeaconBlockBody) -> None:
2019-11-01 14:58:13 +00:00
committee = get_light_client_committee(state, get_current_epoch(state))
2019-11-05 20:16:56 +00:00
total_reward = Gwei(0)
2020-01-09 13:56:06 +00:00
signer_pubkeys = []
2020-01-05 23:17:48 +00:00
for bit_index, participant_index in enumerate(committee):
if block_body.light_client_signature_bitfield[bit_index]:
2020-01-09 13:56:06 +00:00
signer_pubkeys.append(state.validators[participant_index].pubkey)
2020-01-05 23:17:48 +00:00
increase_balance(state, participant_index, get_base_reward(state, participant_index))
total_reward += get_base_reward(state, participant_index)
2019-11-01 14:58:13 +00:00
2019-11-20 04:11:19 +00:00
increase_balance(state, get_beacon_proposer_index(state), Gwei(total_reward // PROPOSER_REWARD_QUOTIENT))
2020-04-06 11:30:32 +00:00
2020-04-28 03:28:21 +00:00
slot = compute_previous_slot(state.slot)
2020-04-06 11:30:32 +00:00
signing_root = compute_signing_root(get_block_root_at_slot(state, slot),
2020-01-13 17:55:21 +00:00
get_domain(state, DOMAIN_LIGHT_CLIENT, compute_epoch_at_slot(slot)))
2020-04-28 03:28:21 +00:00
if len(signer_pubkeys) == 0:
2020-05-01 18:25:11 +00:00
# TODO: handle the empty light_client_signature case?
assert block_body.light_client_signature == BLSSignature()
2020-04-28 03:28:21 +00:00
return
else:
assert bls.FastAggregateVerify(signer_pubkeys, signing_root, signature=block_body.light_client_signature)
2019-10-13 06:52:51 +00:00
```
2019-10-12 14:59:51 +00:00
### Epoch transition
2019-11-15 20:11:42 +00:00
This epoch transition overrides the phase0 epoch transition:
2019-10-12 14:59:51 +00:00
```python
2019-11-15 20:11:42 +00:00
def process_epoch(state: BeaconState) -> None:
process_justification_and_finalization(state)
process_rewards_and_penalties(state)
process_registry_updates(state)
2019-11-15 22:42:28 +00:00
process_reveal_deadlines(state)
2019-11-15 20:11:42 +00:00
process_slashings(state)
process_final_updates(state)
2019-11-15 22:42:28 +00:00
process_custody_final_updates(state)
process_online_tracking(state)
process_light_client_committee_updates(state)
```
2019-11-15 20:11:42 +00:00
2019-11-15 22:52:57 +00:00
#### Custody game updates
`process_reveal_deadlines` and `process_custody_final_updates` are defined in [the Custody Game spec ](./1_custody-game.md ),
2019-11-15 22:42:28 +00:00
#### Online-tracking
```python
def process_online_tracking(state: BeaconState) -> None:
2019-10-27 01:01:10 +00:00
# Slowly remove validators from the "online" set if they do not show up
for index in range(len(state.validators)):
if state.online_countdown[index] != 0:
state.online_countdown[index] = state.online_countdown[index] - 1
2019-11-06 22:19:00 +00:00
# Process pending attestations
for pending_attestation in state.current_epoch_attestations + state.previous_epoch_attestations:
for index in get_attesting_indices(state, pending_attestation.data, pending_attestation.aggregation_bits):
state.online_countdown[index] = ONLINE_PERIOD
2019-10-12 14:59:51 +00:00
```
2019-11-15 22:42:28 +00:00
#### Light client committee updates
```python
def process_light_client_committee_updates(state: BeaconState) -> None:
# Update light client committees
if get_current_epoch(state) % LIGHT_CLIENT_COMMITTEE_PERIOD == 0:
state.current_light_committee = state.next_light_committee
new_committee = get_light_client_committee(state, get_current_epoch(state) + LIGHT_CLIENT_COMMITTEE_PERIOD)
state.next_light_committee = committee_to_compact_committee(state, new_committee)
```