2021-03-17 23:20:53 +00:00
# Ethereum 2.0 Sharding -- Beacon Chain changes
2019-10-12 03:05:08 +00:00
**Notice**: This document is a work-in-progress for researchers and implementers.
## Table of contents
2021-03-17 23:07:15 +00:00
<!-- TOC -->
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 -->
2020-09-23 20:55:22 +00:00
2020-01-24 23:43:43 +00:00
- [Introduction ](#introduction )
- [Custom types ](#custom-types )
2021-03-26 23:47:10 +00:00
- [Constants ](#constants )
2020-12-11 08:10:50 +00:00
- [Misc ](#misc )
2021-05-06 16:28:46 +00:00
- [Domain types ](#domain-types )
2021-06-03 15:32:35 +00:00
- [Shard Work Status ](#shard-work-status )
2021-05-06 16:28:46 +00:00
- [Preset ](#preset )
- [Misc ](#misc-1 )
- [Shard block samples ](#shard-block-samples )
2020-12-11 08:10:50 +00:00
- [Precomputed size verification points ](#precomputed-size-verification-points )
- [Gwei values ](#gwei-values )
2021-05-06 16:28:46 +00:00
- [Configuration ](#configuration )
2020-01-24 23:43:43 +00:00
- [Updated containers ](#updated-containers )
2020-12-11 08:10:50 +00:00
- [`AttestationData` ](#attestationdata )
2021-03-18 00:26:03 +00:00
- [`BeaconBlockBody` ](#beaconblockbody )
2020-12-11 08:10:50 +00:00
- [`BeaconState` ](#beaconstate )
2020-01-24 23:43:43 +00:00
- [New containers ](#new-containers )
2020-12-11 08:10:50 +00:00
- [`DataCommitment` ](#datacommitment )
2021-04-04 00:45:57 +00:00
- [`ShardBlobBodySummary` ](#shardblobbodysummary )
- [`ShardBlobHeader` ](#shardblobheader )
- [`SignedShardBlobHeader` ](#signedshardblobheader )
2020-12-11 08:10:50 +00:00
- [`PendingShardHeader` ](#pendingshardheader )
2021-04-04 00:45:57 +00:00
- [`ShardBlobReference` ](#shardblobreference )
- [`SignedShardBlobReference` ](#signedshardblobreference )
- [`ShardProposerSlashing` ](#shardproposerslashing )
2021-05-29 19:28:00 +00:00
- [`ShardWork` ](#shardwork )
2020-01-24 23:43:43 +00:00
- [Helper functions ](#helper-functions )
2021-05-06 16:28:46 +00:00
- [Misc ](#misc-2 )
2021-01-04 18:17:30 +00:00
- [`next_power_of_two` ](#next_power_of_two )
2020-12-11 08:10:50 +00:00
- [`compute_previous_slot` ](#compute_previous_slot )
- [`compute_updated_gasprice` ](#compute_updated_gasprice )
- [`compute_committee_source_epoch` ](#compute_committee_source_epoch )
- [Beacon state accessors ](#beacon-state-accessors )
- [Updated `get_committee_count_per_slot` ](#updated-get_committee_count_per_slot )
- [`get_active_shard_count` ](#get_active_shard_count )
- [`get_shard_committee` ](#get_shard_committee )
2021-01-04 18:17:30 +00:00
- [`compute_proposer_index` ](#compute_proposer_index )
2020-12-11 08:10:50 +00:00
- [`get_shard_proposer_index` ](#get_shard_proposer_index )
- [`get_start_shard` ](#get_start_shard )
2021-01-04 18:17:30 +00:00
- [`compute_shard_from_committee_index` ](#compute_shard_from_committee_index )
- [`compute_committee_index_from_shard` ](#compute_committee_index_from_shard )
2020-12-11 08:10:50 +00:00
- [Block processing ](#block-processing )
- [Operations ](#operations )
2021-05-29 21:55:16 +00:00
- [Extended Attestation processing ](#extended-attestation-processing )
- [`process_shard_header` ](#process_shard_header )
- [`process_shard_proposer_slashing` ](#process_shard_proposer_slashing )
2020-12-11 08:10:50 +00:00
- [Epoch transition ](#epoch-transition )
2021-05-29 21:55:16 +00:00
- [`process_pending_shard_confirmations` ](#process_pending_shard_confirmations )
- [`charge_confirmed_shard_fees` ](#charge_confirmed_shard_fees )
- [`reset_pending_shard_work` ](#reset_pending_shard_work )
- [`process_shard_epoch_increment` ](#process_shard_epoch_increment )
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 -->
2021-03-17 23:07:15 +00:00
<!-- /TOC -->
2019-10-12 03:05:08 +00:00
## Introduction
2020-12-09 07:29:21 +00:00
This document describes the extensions made to the Phase 0 design of The Beacon Chain to support data sharding,
based on the ideas [here ](https://hackmd.io/G-Iy5jqyT7CXWEz8Ssos8g ) and more broadly [here ](https://arxiv.org/abs/1809.09044 ),
using KZG10 commitments to commit to data to remove any need for fraud proofs (and hence, safety-critical synchrony assumptions) in the design.
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 |
| - | - | - |
2020-12-10 06:29:09 +00:00
| `Shard` | `uint64` | A shard number |
2021-04-05 14:39:04 +00:00
| `BLSCommitment` | `Bytes48` | A G1 curve point |
2021-03-18 00:09:15 +00:00
| `BLSPoint` | `uint256` | A number `x` in the range `0 <= x < MODULUS` |
2019-11-18 23:40:02 +00:00
2021-03-26 23:47:10 +00:00
## Constants
The following values are (non-configurable) constants used throughout the specification.
2021-05-06 16:28:46 +00:00
### Misc
2021-03-26 23:47:10 +00:00
| Name | Value | Notes |
| - | - | - |
| `PRIMITIVE_ROOT_OF_UNITY` | `5` | Primitive root of unity of the BLS12_381 (inner) modulus |
2021-03-29 23:33:17 +00:00
| `DATA_AVAILABILITY_INVERSE_CODING_RATE` | `2**1` (= 2) | Factor by which samples are extended for data availability encoding |
2021-03-26 23:47:10 +00:00
| `POINTS_PER_SAMPLE` | `uint64(2**3)` (= 8) | 31 * 8 = 248 bytes |
| `MODULUS` | `0x73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001` (curve order of BLS12_381) |
2021-05-06 16:28:46 +00:00
### Domain types
| Name | Value |
| - | - |
| `DOMAIN_SHARD_PROPOSER` | `DomainType('0x80000000')` |
| `DOMAIN_SHARD_COMMITTEE` | `DomainType('0x81000000')` |
2021-06-03 15:32:35 +00:00
### Shard Work Status
2021-05-28 18:18:29 +00:00
| Name | Value | Notes |
| - | - | - |
2021-06-03 15:32:35 +00:00
| `SHARD_WORK_UNCONFIRMED` | `0` | Unconfirmed, nullified after confirmation time elapses |
| `SHARD_WORK_CONFIRMED` | `1` | Confirmed, reduced to just the commitment |
| `SHARD_WORK_PENDING` | `2` | Pending, a list of competing headers |
2021-05-28 18:18:29 +00:00
2021-05-06 16:28:46 +00:00
## Preset
2019-10-12 03:05:08 +00:00
### Misc
2020-12-10 02:21:21 +00:00
| Name | Value | Notes |
| - | - | - |
2021-03-29 23:33:17 +00:00
| `MAX_SHARDS` | `uint64(2**10)` (= 1,024) | Theoretical max shard count (used to determine data structure sizes) |
2020-12-14 22:57:53 +00:00
| `GASPRICE_ADJUSTMENT_COEFFICIENT` | `uint64(2**3)` (= 8) | Gasprice may decrease/increase by at most exp(1 / this value) *per epoch* |
2021-04-06 01:17:07 +00:00
| `MAX_SHARD_PROPOSER_SLASHINGS` | `2**4` (= 16) | Maximum amount of shard proposer slashing operations per block |
2021-05-06 16:28:46 +00:00
| `MAX_SHARD_HEADERS_PER_SHARD` | `4` | |
2021-05-29 20:39:25 +00:00
| `SHARD_STATE_MEMORY_SLOTS` | `uint64(2**8)` (= 256) | Number of slots for which shard commitments and confirmation status is directly available in the state |
2020-12-16 14:14:21 +00:00
2021-05-06 16:28:46 +00:00
### Shard block samples
2020-06-09 22:38:40 +00:00
2020-12-09 07:29:21 +00:00
| Name | Value | Notes |
2020-06-15 07:27:37 +00:00
| - | - | - |
2020-12-09 07:29:21 +00:00
| `MAX_SAMPLES_PER_BLOCK` | `uint64(2**11)` (= 2,048) | 248 * 2,048 = 507,904 bytes |
| `TARGET_SAMPLES_PER_BLOCK` | `uint64(2**10)` (= 1,024) | 248 * 1,024 = 253,952 bytes |
2020-06-09 20:34:46 +00:00
2020-12-09 07:29:21 +00:00
### Precomputed size verification points
2020-06-09 20:34:46 +00:00
| Name | Value |
| - | - |
2020-12-28 17:38:09 +00:00
| `G1_SETUP` | Type `List[G1]` . The G1-side trusted setup `[G, G*s, G*s**2....]` ; note that the first point is the generator. |
| `G2_SETUP` | Type `List[G2]` . The G2-side trusted setup `[G, G*s, G*s**2....]` |
2021-04-05 20:13:54 +00:00
| `ROOT_OF_UNITY` | `pow(PRIMITIVE_ROOT_OF_UNITY, (MODULUS - 1) // int(MAX_SAMPLES_PER_BLOCK * POINTS_PER_SAMPLE), MODULUS)` |
2020-06-09 20:34:46 +00:00
2020-12-09 07:29:21 +00:00
### Gwei values
| Name | Value | Unit | Description |
| - | - | - | - |
2020-12-18 13:57:05 +00:00
| `MAX_GASPRICE` | `Gwei(2**33)` (= 8,589,934,592) | Gwei | Max gasprice charged for a TARGET-sized shard block |
2020-12-14 22:57:53 +00:00
| `MIN_GASPRICE` | `Gwei(2**3)` (= 8) | Gwei | Min gasprice charged for a TARGET-sized shard block |
2020-06-09 20:34:46 +00:00
2021-05-06 16:28:46 +00:00
## Configuration
2020-04-02 22:48:02 +00:00
2021-05-06 16:28:46 +00:00
| Name | Value | Notes |
| - | - | - |
| `INITIAL_ACTIVE_SHARDS` | `uint64(2**6)` (= 64) | Initial shard count |
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
2021-03-18 00:06:37 +00:00
The following containers have updated definitions to support Sharding.
2019-11-03 20:06:19 +00:00
2020-12-09 07:29:21 +00:00
### `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
2020-12-09 07:29:21 +00:00
# Shard header root
2021-03-29 23:33:17 +00:00
shard_header_root: Root # [New in Sharding]
2019-11-15 20:11:42 +00:00
```
2021-03-18 00:12:55 +00:00
### `BeaconBlockBody`
2020-12-10 03:47:02 +00:00
```python
2021-03-27 00:28:52 +00:00
class BeaconBlockBody(merge.BeaconBlockBody): # [extends The Merge block body]
2021-04-04 00:45:57 +00:00
shard_proposer_slashings: List[ShardProposerSlashing, MAX_SHARD_PROPOSER_SLASHINGS]
shard_headers: List[SignedShardBlobHeader, MAX_SHARDS * MAX_SHARD_HEADERS_PER_SHARD]
2020-12-10 03:47:02 +00:00
```
2020-12-09 07:29:21 +00:00
### `BeaconState`
2019-11-16 10:13:47 +00:00
2019-11-15 20:11:42 +00:00
```python
2021-04-29 13:39:57 +00:00
class BeaconState(merge.BeaconState): # [extends The Merge state]
2021-05-28 18:18:29 +00:00
# [Updated fields] (Warning: this changes with Altair, Sharding will rebase to use participation-flags)
2020-12-11 08:17:16 +00:00
previous_epoch_attestations: List[PendingAttestation, MAX_ATTESTATIONS * SLOTS_PER_EPOCH]
current_epoch_attestations: List[PendingAttestation, MAX_ATTESTATIONS * SLOTS_PER_EPOCH]
2021-03-27 00:28:52 +00:00
# [New fields]
2021-05-28 19:26:06 +00:00
# A ring buffer of the latest slots, with information per active shard.
2021-05-29 19:28:00 +00:00
shard_buffer: Vector[List[ShardWork, MAX_SHARDS], SHARD_STATE_MEMORY_SLOTS]
2020-12-09 07:29:21 +00:00
shard_gasprice: uint64
2020-12-10 03:47:02 +00:00
current_epoch_start_shard: Shard
2019-10-12 14:59:51 +00:00
```
2019-11-22 22:45:55 +00:00
## New containers
2021-03-18 00:06:37 +00:00
The shard data itself is network-layer only, and can be found in the [P2P specification ](./p2p-interface.md ).
The beacon chain registers just the commitments of the shard data.
2019-11-22 22:45:55 +00:00
2020-12-10 06:42:43 +00:00
### `DataCommitment`
```python
class DataCommitment(Container):
2020-12-28 16:24:31 +00:00
# KZG10 commitment to the data
2020-12-10 06:42:43 +00:00
point: BLSCommitment
# Length of the data in samples
2020-12-28 16:01:47 +00:00
length: uint64
2020-12-10 06:42:43 +00:00
```
2021-04-04 00:45:57 +00:00
### `ShardBlobBodySummary`
2019-11-22 22:45:55 +00:00
```python
2021-04-04 00:45:57 +00:00
class ShardBlobBodySummary(Container):
2020-12-10 06:42:43 +00:00
# The actual data commitment
commitment: DataCommitment
2020-12-28 16:36:28 +00:00
# Proof that the degree < commitment.length
2021-01-02 21:31:25 +00:00
degree_proof: BLSCommitment
2021-04-04 00:45:57 +00:00
# Hash-tree-root as summary of the data field
data_root: Root
2021-04-06 17:31:20 +00:00
# Latest block root of the Beacon Chain, before shard_blob.slot
beacon_block_root: Root
2020-03-31 04:37:36 +00:00
```
2021-04-04 00:45:57 +00:00
### `ShardBlobHeader`
```python
class ShardBlobHeader(Container):
# Slot and shard that this header is intended for
slot: Slot
shard: Shard
2021-05-27 01:57:59 +00:00
# SSZ-summary of ShardBlobBody
2021-04-04 00:45:57 +00:00
body_summary: ShardBlobBodySummary
# Proposer of the shard-blob
proposer_index: ValidatorIndex
```
2021-01-01 20:52:29 +00:00
2021-04-04 00:45:57 +00:00
### `SignedShardBlobHeader`
2021-01-04 18:17:30 +00:00
```python
2021-04-04 00:45:57 +00:00
class SignedShardBlobHeader(Container):
message: ShardBlobHeader
2021-01-04 18:17:30 +00:00
signature: BLSSignature
```
2020-12-09 07:29:21 +00:00
### `PendingShardHeader`
2020-03-31 04:37:36 +00:00
```python
2020-12-09 07:29:21 +00:00
class PendingShardHeader(Container):
2020-12-28 16:24:31 +00:00
# KZG10 commitment to the data
2020-12-28 17:21:46 +00:00
commitment: DataCommitment
2021-01-04 18:17:30 +00:00
# hash_tree_root of the ShardHeader (stored so that attestations can be checked against it)
2020-12-28 16:55:06 +00:00
root: Root
2020-12-09 07:29:21 +00:00
# Who voted for the header
2020-12-28 16:56:43 +00:00
votes: Bitlist[MAX_VALIDATORS_PER_COMMITTEE]
2021-05-28 19:56:13 +00:00
# Sum of effective balances of votes
weight: Gwei
2021-05-31 16:55:08 +00:00
# When the header was last updated, as reference for weight accuracy
update_slot: Slot
2019-11-22 22:45:55 +00:00
```
2021-04-04 00:45:57 +00:00
### `ShardBlobReference`
```python
class ShardBlobReference(Container):
2021-04-06 01:17:07 +00:00
# Slot and shard that this reference is intended for
2021-04-04 00:45:57 +00:00
slot: Slot
shard: Shard
2021-05-27 01:57:59 +00:00
# Hash-tree-root of ShardBlobBody
2021-04-04 00:45:57 +00:00
body_root: Root
# Proposer of the shard-blob
proposer_index: ValidatorIndex
```
### `SignedShardBlobReference`
```python
2021-04-06 01:17:07 +00:00
class SignedShardBlobReference(Container):
2021-04-04 00:45:57 +00:00
message: ShardBlobReference
signature: BLSSignature
```
### `ShardProposerSlashing`
```python
class ShardProposerSlashing(Container):
2021-04-06 01:17:07 +00:00
signed_reference_1: SignedShardBlobReference
signed_reference_2: SignedShardBlobReference
2021-04-04 00:45:57 +00:00
```
2021-05-29 19:28:00 +00:00
### `ShardWork`
2021-05-28 19:26:06 +00:00
```python
class ShardWork(Container):
# Upon confirmation the data is reduced to just the header.
2021-06-03 15:32:35 +00:00
status: Union[ # See Shard Work Status enum
None, # SHARD_WORK_UNCONFIRMED
DataCommitment, # SHARD_WORK_CONFIRMED
List[PendingShardHeader, MAX_SHARD_HEADERS_PER_SHARD] # SHARD_WORK_PENDING
2021-05-28 19:26:06 +00:00
]
```
2019-11-15 20:11:42 +00:00
## Helper functions
### Misc
2020-12-18 20:33:34 +00:00
#### `next_power_of_two`
```python
2021-04-23 15:47:25 +00:00
def next_power_of_two(x: int) -> int:
2020-12-18 20:33:34 +00:00
return 2 ** ((x - 1).bit_length())
```
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)
```
2020-04-16 11:43:48 +00:00
#### `compute_updated_gasprice`
```python
2020-12-10 02:21:21 +00:00
def compute_updated_gasprice(prev_gasprice: Gwei, shard_block_length: uint64, adjustment_quotient: uint64) -> Gwei:
2020-12-09 07:29:21 +00:00
if shard_block_length > TARGET_SAMPLES_PER_BLOCK:
2020-12-16 03:55:31 +00:00
delta = max(1, prev_gasprice * (shard_block_length - TARGET_SAMPLES_PER_BLOCK)
// TARGET_SAMPLES_PER_BLOCK // adjustment_quotient)
2020-04-16 11:43:48 +00:00
return min(prev_gasprice + delta, MAX_GASPRICE)
else:
2020-12-16 03:55:31 +00:00
delta = max(1, prev_gasprice * (TARGET_SAMPLES_PER_BLOCK - shard_block_length)
// TARGET_SAMPLES_PER_BLOCK // adjustment_quotient)
2020-04-16 11:43:48 +00:00
return max(prev_gasprice, MIN_GASPRICE + delta) - delta
```
2020-05-29 19:09:42 +00:00
#### `compute_committee_source_epoch`
```python
def compute_committee_source_epoch(epoch: Epoch, period: uint64) -> Epoch:
"""
Return the source epoch for computing the committee.
"""
2020-09-03 11:24:17 +00:00
source_epoch = Epoch(epoch - epoch % period)
2020-05-29 19:09:42 +00:00
if source_epoch >= period:
source_epoch -= period # `period` epochs lookahead
return source_epoch
```
2019-11-15 20:11:42 +00:00
### Beacon state accessors
2020-08-10 19:02:22 +00:00
#### Updated `get_committee_count_per_slot`
2020-08-05 18:44:31 +00:00
```python
def get_committee_count_per_slot(state: BeaconState, epoch: Epoch) -> uint64:
"""
Return the number of committees in each slot for the given ``epoch``.
"""
return max(uint64(1), min(
2020-12-10 03:47:02 +00:00
get_active_shard_count(state, epoch),
2020-08-05 18:44:31 +00:00
uint64(len(get_active_validator_indices(state, epoch))) // SLOTS_PER_EPOCH // TARGET_COMMITTEE_SIZE,
))
```
2020-01-05 19:20:20 +00:00
#### `get_active_shard_count`
```python
2020-12-10 03:47:02 +00:00
def get_active_shard_count(state: BeaconState, epoch: Epoch) -> uint64:
2020-08-10 19:02:22 +00:00
"""
Return the number of active shards.
Note that this puts an upper bound on the number of committees per slot.
"""
2020-08-05 18:44:31 +00:00
return INITIAL_ACTIVE_SHARDS
2020-01-05 19:20:20 +00:00
```
2019-11-15 20:11:42 +00:00
#### `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-05-28 14:39:52 +00:00
"""
Return the shard committee of the given ``epoch`` of the given ``shard``.
"""
2020-05-29 19:09:42 +00:00
source_epoch = compute_committee_source_epoch(epoch, SHARD_COMMITTEE_PERIOD)
2019-11-12 14:13:47 +00:00
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
seed = get_seed(beacon_state, source_epoch, DOMAIN_SHARD_COMMITTEE)
2020-04-02 03:20:22 +00:00
return compute_committee(
indices=active_validator_indices,
seed=seed,
index=shard,
2020-12-10 03:47:02 +00:00
count=get_active_shard_count(beacon_state, epoch),
2020-04-02 03:20:22 +00:00
)
2019-11-12 14:13:47 +00:00
```
2020-12-18 13:57:05 +00:00
#### `compute_proposer_index`
2021-01-04 18:17:30 +00:00
Updated version to get a proposer index that will only allow proposers with a certain minimum balance,
ensuring that the balance is always sufficient to cover gas costs.
2020-12-18 13:57:05 +00:00
```python
2021-01-04 18:17:30 +00:00
def compute_proposer_index(beacon_state: BeaconState,
indices: Sequence[ValidatorIndex],
seed: Bytes32,
2021-04-23 15:47:25 +00:00
min_effective_balance: Gwei = Gwei(0)) -> ValidatorIndex:
2020-12-18 13:57:05 +00:00
"""
Return from ``indices`` a random index sampled by effective balance.
"""
assert len(indices) > 0
MAX_RANDOM_BYTE = 2**8 - 1
i = uint64(0)
total = uint64(len(indices))
while True:
candidate_index = indices[compute_shuffled_index(i % total, total, seed)]
random_byte = hash(seed + uint_to_bytes(uint64(i // 32)))[i % 32]
2021-01-04 18:17:30 +00:00
effective_balance = beacon_state.validators[candidate_index].effective_balance
if effective_balance < = min_effective_balance:
continue
if effective_balance * MAX_RANDOM_BYTE >= MAX_EFFECTIVE_BALANCE * random_byte:
2020-12-18 13:57:05 +00:00
return candidate_index
i += 1
```
2019-11-15 20:11:42 +00:00
#### `get_shard_proposer_index`
2019-11-12 14:13:47 +00:00
```python
def get_shard_proposer_index(beacon_state: BeaconState, slot: Slot, shard: Shard) -> ValidatorIndex:
2020-06-04 03:19:04 +00:00
"""
Return the proposer's index of shard block at ``slot``.
"""
2020-06-03 21:06:04 +00:00
epoch = compute_epoch_at_slot(slot)
2020-06-04 03:19:04 +00:00
committee = get_shard_committee(beacon_state, epoch, shard)
2021-05-05 14:40:23 +00:00
seed = hash(get_seed(beacon_state, epoch, DOMAIN_SHARD_PROPOSER) + uint_to_bytes(slot))
2020-12-18 13:57:05 +00:00
2021-01-04 18:17:30 +00:00
# Proposer must have sufficient balance to pay for worst case fee burn
EFFECTIVE_BALANCE_MAX_DOWNWARD_DEVIATION = (
2021-05-05 17:17:09 +00:00
EFFECTIVE_BALANCE_INCREMENT - EFFECTIVE_BALANCE_INCREMENT
2021-01-04 18:17:30 +00:00
* HYSTERESIS_DOWNWARD_MULTIPLIER // HYSTERESIS_QUOTIENT
)
min_effective_balance = (
beacon_state.shard_gasprice * MAX_SAMPLES_PER_BLOCK // TARGET_SAMPLES_PER_BLOCK
+ EFFECTIVE_BALANCE_MAX_DOWNWARD_DEVIATION
)
return compute_proposer_index(beacon_state, committee, seed, min_effective_balance)
2020-05-29 15:50:18 +00:00
```
2019-11-18 23:40:02 +00:00
#### `get_start_shard`
```python
def get_start_shard(state: BeaconState, slot: Slot) -> Shard:
2020-05-29 15:50:18 +00:00
"""
Return the start shard at ``slot``.
"""
current_epoch_start_slot = compute_start_slot_at_epoch(get_current_epoch(state))
2020-12-10 03:47:02 +00:00
shard = state.current_epoch_start_shard
if slot > current_epoch_start_slot:
2020-05-29 15:50:18 +00:00
# Current epoch or the next epoch lookahead
2020-12-10 03:47:02 +00:00
for _slot in range(current_epoch_start_slot, slot):
committee_count = get_committee_count_per_slot(state, compute_epoch_at_slot(Slot(_slot)))
active_shard_count = get_active_shard_count(state, compute_epoch_at_slot(Slot(_slot)))
shard = (shard + committee_count) % active_shard_count
elif slot < current_epoch_start_slot:
2020-05-29 15:50:18 +00:00
# Previous epoch
2020-12-10 03:47:02 +00:00
for _slot in list(range(slot, current_epoch_start_slot))[::-1]:
committee_count = get_committee_count_per_slot(state, compute_epoch_at_slot(Slot(_slot)))
active_shard_count = get_active_shard_count(state, compute_epoch_at_slot(Slot(_slot)))
2020-05-29 15:50:18 +00:00
# Ensure positive
2020-12-10 03:47:02 +00:00
shard = (shard + active_shard_count - committee_count) % active_shard_count
return Shard(shard)
2019-11-18 23:40:02 +00:00
```
2020-12-31 01:56:29 +00:00
#### `compute_shard_from_committee_index`
```python
def compute_shard_from_committee_index(state: BeaconState, slot: Slot, index: CommitteeIndex) -> Shard:
active_shards = get_active_shard_count(state, compute_epoch_at_slot(slot))
2021-05-28 19:26:06 +00:00
assert index < active_shards
2020-12-31 01:56:29 +00:00
return Shard((index + get_start_shard(state, slot)) % active_shards)
```
#### `compute_committee_index_from_shard`
```python
def compute_committee_index_from_shard(state: BeaconState, slot: Slot, shard: Shard) -> CommitteeIndex:
2021-05-28 19:26:06 +00:00
epoch = compute_epoch_at_slot(slot)
active_shards = get_active_shard_count(state, epoch)
index = CommitteeIndex((active_shards + shard - get_start_shard(state, slot)) % active_shards)
2021-06-01 20:38:36 +00:00
assert index < get_committee_count_per_slot ( state , epoch )
2021-05-28 19:26:06 +00:00
return index
2020-12-31 01:56:29 +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)
2021-03-29 23:33:17 +00:00
process_operations(state, block.body) # [Modified in Sharding]
2021-05-18 11:14:43 +00:00
# Pre-merge, skip execution payload processing
if is_execution_enabled(state, block):
process_execution_payload(state, block.body.execution_payload, EXECUTION_ENGINE) # [New in Merge]
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)
2021-04-04 00:45:57 +00:00
# New shard proposer slashing processing
for_ops(body.shard_proposer_slashings, process_shard_proposer_slashing)
2021-01-04 18:17:30 +00:00
# Limit is dynamic based on active shard count
assert len(body.shard_headers) < = MAX_SHARD_HEADERS_PER_SHARD * get_active_shard_count(state, get_current_epoch(state))
for_ops(body.shard_headers, process_shard_header)
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-10-12 03:05:08 +00:00
```
2021-05-29 21:55:16 +00:00
##### Extended Attestation processing
2020-05-28 19:20:36 +00:00
```python
def process_attestation(state: BeaconState, attestation: Attestation) -> None:
2020-12-09 07:29:21 +00:00
phase0.process_attestation(state, attestation)
2021-05-29 21:55:16 +00:00
update_pending_shard_work(state, attestation)
2020-05-28 19:20:36 +00:00
```
2019-11-03 16:17:46 +00:00
```python
2021-05-29 21:55:16 +00:00
def update_pending_shard_work(state: BeaconState, attestation: Attestation) -> None:
2021-05-05 10:31:19 +00:00
attestation_shard = compute_shard_from_committee_index(
2020-12-09 07:29:21 +00:00
state,
2020-12-31 01:56:29 +00:00
attestation.data.slot,
2020-12-09 07:29:21 +00:00
attestation.data.index,
)
2021-05-28 18:18:29 +00:00
buffer_index = attestation.data.slot % SHARD_STATE_MEMORY_SLOTS
2021-05-28 19:26:06 +00:00
committee_work = state.shard_buffer[buffer_index][attestation_shard]
2021-05-28 18:18:29 +00:00
2021-05-31 16:55:08 +00:00
# Skip attestation vote accounting if the header is not pending
2021-06-03 15:32:35 +00:00
if committee_work.status.selector != SHARD_WORK_PENDING:
2021-05-31 16:55:08 +00:00
# TODO In Altair: set participation bit flag, if attestation matches winning header.
2021-01-04 18:17:30 +00:00
return
2021-05-28 19:26:06 +00:00
current_headers: Sequence[PendingShardHeader] = committee_work.status.value
2021-05-28 18:18:29 +00:00
# Find the corresponding header, abort if it cannot be found
header_index = [header.root for header in current_headers].index(attestation.data.shard_header_root)
2021-05-31 15:03:06 +00:00
pending_header: PendingShardHeader = current_headers[header_index]
2021-01-04 18:17:30 +00:00
full_committee = get_beacon_committee(state, attestation.data.slot, attestation.data.index)
2021-05-31 16:55:08 +00:00
# The weight may be outdated if it is not the initial weight, and from a previous epoch
if pending_header.weight != 0 and compute_epoch_at_slot(pending_header.update_slot) < get_current_epoch ( state ) :
pending_header.weight = sum(state.validators[index].effective_balance for index, bit
in zip(full_committee, pending_header.votes) if bit)
pending_header.update_slot = state.slot
2021-06-03 15:32:35 +00:00
full_committee_balance = Gwei(0)
2021-05-31 16:55:08 +00:00
# Update votes bitfield in the state, update weights
2021-05-28 18:18:29 +00:00
for i, bit in enumerate(attestation.aggregation_bits):
2021-05-28 19:56:13 +00:00
weight = state.validators[full_committee[i]].effective_balance
2021-05-31 16:55:08 +00:00
full_committee_balance += weight
2021-05-28 18:18:29 +00:00
if bit:
2021-05-28 19:56:13 +00:00
if not pending_header.votes[i]:
pending_header.weight += weight
2021-05-31 16:55:08 +00:00
pending_header.votes[i] = True
2021-05-28 18:18:29 +00:00
# Check if the PendingShardHeader is eligible for expedited confirmation, requiring 2/3 of balance attesting
2021-05-31 16:55:08 +00:00
if pending_header.weight * 3 >= full_committee_balance * 2:
# TODO In Altair: set participation bit flag for voters of this early winning header
2021-05-28 19:26:06 +00:00
if pending_header.commitment == DataCommitment():
# The committee voted to not confirm anything
state.shard_buffer[buffer_index][attestation_shard].change(
2021-06-03 15:32:35 +00:00
selector=SHARD_WORK_UNCONFIRMED,
2021-05-28 19:26:06 +00:00
value=None,
)
else:
state.shard_buffer[buffer_index][attestation_shard].change(
2021-06-03 15:32:35 +00:00
selector=SHARD_WORK_CONFIRMED,
2021-05-28 19:26:06 +00:00
value=pending_header.commitment,
)
2020-12-09 07:29:21 +00:00
```
2021-05-29 21:55:16 +00:00
##### `process_shard_header`
2020-12-09 07:29:21 +00:00
```python
2021-05-28 18:18:29 +00:00
def process_shard_header(state: BeaconState, signed_header: SignedShardBlobHeader) -> None:
2020-12-09 07:29:21 +00:00
header = signed_header.message
2021-04-06 15:07:29 +00:00
# Verify the header is not 0, and not from the future.
assert Slot(0) < header.slot < = state . slot
2021-04-04 00:45:57 +00:00
header_epoch = compute_epoch_at_slot(header.slot)
# Verify that the header is within the processing time window
assert header_epoch in [get_previous_epoch(state), get_current_epoch(state)]
# Verify that the shard is active
assert header.shard < get_active_shard_count ( state , header_epoch )
2021-04-06 17:31:20 +00:00
# Verify that the block root matches,
# to ensure the header will only be included in this specific Beacon Chain sub-tree.
2021-04-23 21:12:28 +00:00
assert header.body_summary.beacon_block_root == get_block_root_at_slot(state, header.slot - 1)
2021-05-28 18:18:29 +00:00
# Check that this data is still pending
2021-05-31 15:03:06 +00:00
committee_work = state.shard_buffer[header.slot % SHARD_STATE_MEMORY_SLOTS][header.shard]
2021-06-03 15:32:35 +00:00
assert committee_work.status.selector == SHARD_WORK_PENDING
2021-05-28 18:18:29 +00:00
# Check that this header is not yet in the pending list
2021-05-28 19:26:06 +00:00
current_headers: Sequence[PendingShardHeader] = committee_work.status.value
2021-06-03 16:00:51 +00:00
header_root = hash_tree_root(header)
2021-05-28 18:18:29 +00:00
assert header_root not in [pending_header.root for pending_header in current_headers]
2021-04-04 00:45:57 +00:00
# Verify proposer
assert header.proposer_index == get_shard_proposer_index(state, header.slot, header.shard)
2020-12-09 07:29:21 +00:00
# Verify signature
2021-04-30 11:14:09 +00:00
signing_root = compute_signing_root(header, get_domain(state, DOMAIN_SHARD_PROPOSER))
2021-04-06 01:17:07 +00:00
assert bls.Verify(state.validators[header.proposer_index].pubkey, signing_root, signed_header.signature)
2021-01-04 18:17:30 +00:00
2020-12-28 17:38:09 +00:00
# Verify the length by verifying the degree.
2021-04-04 00:45:57 +00:00
body_summary = header.body_summary
if body_summary.commitment.length == 0:
assert body_summary.degree_proof == G1_SETUP[0]
2019-11-18 22:07:50 +00:00
assert (
2021-04-04 00:45:57 +00:00
bls.Pairing(body_summary.degree_proof, G2_SETUP[0])
2021-04-06 17:49:48 +00:00
== bls.Pairing(body_summary.commitment.point, G2_SETUP[-body_summary.commitment.length])
2019-11-18 22:07:50 +00:00
)
2021-01-04 18:17:30 +00:00
2021-05-28 18:18:29 +00:00
# Initialize the pending header
2020-12-31 01:56:29 +00:00
index = compute_committee_index_from_shard(state, header.slot, header.shard)
committee_length = len(get_beacon_committee(state, header.slot, index))
2021-05-28 18:18:29 +00:00
initial_votes = Bitlist[MAX_VALIDATORS_PER_COMMITTEE]([0] * committee_length)
pending_header = PendingShardHeader(
2021-04-04 00:45:57 +00:00
commitment=body_summary.commitment,
2020-12-09 07:29:21 +00:00
root=header_root,
2021-05-28 18:18:29 +00:00
votes=initial_votes,
2021-05-28 19:56:13 +00:00
weight=0,
2021-05-31 16:55:08 +00:00
update_slot=state.slot,
2021-05-28 18:18:29 +00:00
)
# Include it in the pending list
2021-05-31 15:03:06 +00:00
state.shard_buffer[header.slot % SHARD_STATE_MEMORY_SLOTS][header.shard].append(pending_header)
2020-02-06 18:58:21 +00:00
```
2020-12-09 07:29:21 +00:00
The degree proof works as follows. For a block `B` with length `l` (so `l` values in `[0...l - 1]` , seen as a polynomial `B(X)` which takes these values),
the length proof is the commitment to the polynomial `B(X) * X**(MAX_DEGREE + 1 - l)` ,
where `MAX_DEGREE` is the maximum power of `s` available in the setup, which is `MAX_DEGREE = len(G2_SETUP) - 1` .
The goal is to ensure that a proof can only be constructed if `deg(B) < l` (there are not hidden higher-order terms in the polynomial, which would thwart reconstruction).
2020-02-06 18:58:21 +00:00
2021-05-29 21:55:16 +00:00
##### `process_shard_proposer_slashing`
2021-04-04 00:45:57 +00:00
```python
def process_shard_proposer_slashing(state: BeaconState, proposer_slashing: ShardProposerSlashing) -> None:
2021-04-06 01:17:07 +00:00
reference_1 = proposer_slashing.signed_reference_1.message
reference_2 = proposer_slashing.signed_reference_2.message
2021-04-04 00:45:57 +00:00
# Verify header slots match
2021-04-06 01:17:07 +00:00
assert reference_1.slot == reference_2.slot
2021-04-04 00:45:57 +00:00
# Verify header shards match
2021-04-06 01:17:07 +00:00
assert reference_1.shard == reference_2.shard
2021-04-04 00:45:57 +00:00
# Verify header proposer indices match
2021-04-06 01:17:07 +00:00
assert reference_1.proposer_index == reference_2.proposer_index
2021-04-04 00:45:57 +00:00
# Verify the headers are different (i.e. different body)
2021-04-06 01:17:07 +00:00
assert reference_1 != reference_2
2021-04-04 00:45:57 +00:00
# Verify the proposer is slashable
2021-04-06 01:17:07 +00:00
proposer = state.validators[reference_1.proposer_index]
2021-04-04 00:45:57 +00:00
assert is_slashable_validator(proposer, get_current_epoch(state))
# Verify signatures
2021-04-06 01:17:07 +00:00
for signed_header in (proposer_slashing.signed_reference_1, proposer_slashing.signed_reference_2):
2021-04-04 00:45:57 +00:00
domain = get_domain(state, DOMAIN_SHARD_PROPOSER, compute_epoch_at_slot(signed_header.message.slot))
signing_root = compute_signing_root(signed_header.message, domain)
assert bls.Verify(proposer.pubkey, signing_root, signed_header.signature)
2021-04-06 01:17:07 +00:00
slash_validator(state, reference_1.proposer_index)
2021-04-04 00:45:57 +00:00
```
2019-10-12 14:59:51 +00:00
### Epoch transition
2021-03-27 00:28:52 +00:00
This epoch transition overrides the Merge epoch transition:
2019-11-15 20:11:42 +00:00
2019-10-12 14:59:51 +00:00
```python
2019-11-15 20:11:42 +00:00
def process_epoch(state: BeaconState) -> None:
2020-12-09 07:29:21 +00:00
# Sharding
2021-05-29 21:55:16 +00:00
process_pending_shard_confirmations(state)
charge_confirmed_shard_fees(state)
reset_pending_shard_work(state)
2020-12-09 07:29:21 +00:00
2021-05-31 16:55:08 +00:00
# Phase0
2019-11-15 20:11:42 +00:00
process_justification_and_finalization(state)
process_rewards_and_penalties(state)
process_registry_updates(state)
process_slashings(state)
2020-12-09 07:29:21 +00:00
# Final updates
2021-01-27 06:42:50 +00:00
process_eth1_data_reset(state)
process_effective_balance_updates(state)
process_slashings_reset(state)
process_randao_mixes_reset(state)
process_historical_roots_update(state)
2021-01-19 13:41:34 +00:00
process_participation_record_updates(state)
2021-03-18 00:06:37 +00:00
process_shard_epoch_increment(state)
2019-11-15 22:42:28 +00:00
```
2019-11-15 20:11:42 +00:00
2021-05-29 21:55:16 +00:00
#### `process_pending_shard_confirmations`
2020-12-09 07:29:21 +00:00
```python
2021-05-29 21:55:16 +00:00
def process_pending_shard_confirmations(state: BeaconState) -> None:
2021-01-04 18:17:30 +00:00
# Pending header processing applies to the previous epoch.
# Skip if `GENESIS_EPOCH` because no prior epoch to process.
if get_current_epoch(state) == GENESIS_EPOCH:
return
2021-04-22 17:38:21 +00:00
previous_epoch = get_previous_epoch(state)
previous_epoch_start_slot = compute_start_slot_at_epoch(previous_epoch)
2021-05-28 18:18:29 +00:00
# Mark stale headers as unconfirmed
2021-01-04 18:17:30 +00:00
for slot in range(previous_epoch_start_slot, previous_epoch_start_slot + SLOTS_PER_EPOCH):
2021-05-28 18:18:29 +00:00
buffer_index = slot % SHARD_STATE_MEMORY_SLOTS
2021-05-28 19:26:06 +00:00
for shard_index in range(len(state.shard_buffer[buffer_index])):
2021-05-28 19:56:13 +00:00
committee_work = state.shard_buffer[buffer_index][shard_index]
2021-06-03 17:11:47 +00:00
if committee_work.status.selector == SHARD_WORK_PENDING:
winning_header = max(committee_work.status.value, key=lambda header: header.weight)
2021-05-31 16:55:08 +00:00
# TODO In Altair: set participation bit flag of voters for winning header
2021-05-28 19:56:13 +00:00
if winning_header.commitment == DataCommitment():
2021-06-03 17:11:47 +00:00
committee_work.status.change(selector=SHARD_WORK_UNCONFIRMED, value=None)
2021-05-28 19:56:13 +00:00
else:
2021-06-03 17:11:47 +00:00
committee_work.status.change(selector=SHARD_WORK_CONFIRMED, value=winning_header.commitment)
2021-01-04 18:17:30 +00:00
```
2020-12-09 07:29:21 +00:00
2021-05-29 21:55:16 +00:00
#### `charge_confirmed_shard_fees`
2020-12-09 07:29:21 +00:00
```python
2021-05-29 21:55:16 +00:00
def charge_confirmed_shard_fees(state: BeaconState) -> None:
2020-12-09 07:29:21 +00:00
new_gasprice = state.shard_gasprice
2021-05-10 00:08:54 +00:00
previous_epoch = get_previous_epoch(state)
2021-05-28 18:18:29 +00:00
previous_epoch_start_slot = compute_start_slot_at_epoch(previous_epoch)
2021-01-04 18:17:30 +00:00
adjustment_quotient = (
2021-05-10 00:08:54 +00:00
get_active_shard_count(state, previous_epoch)
2021-01-04 18:17:30 +00:00
* SLOTS_PER_EPOCH * GASPRICE_ADJUSTMENT_COEFFICIENT
)
2021-05-28 18:18:29 +00:00
# Iterate through confirmed shard-headers
2021-01-04 18:17:30 +00:00
for slot in range(previous_epoch_start_slot, previous_epoch_start_slot + SLOTS_PER_EPOCH):
2021-05-28 18:18:29 +00:00
buffer_index = slot % SHARD_STATE_MEMORY_SLOTS
2021-05-28 19:26:06 +00:00
for shard_index in range(len(state.shard_buffer[buffer_index])):
committee_work = state.shard_buffer[buffer_index][shard_index]
2021-06-03 15:32:35 +00:00
if committee_work.status.selector == SHARD_WORK_CONFIRMED:
2021-06-03 17:11:47 +00:00
commitment: DataCommitment = committee_work.status.value
2021-05-28 18:18:29 +00:00
# Charge EIP 1559 fee
proposer = get_shard_proposer_index(state, slot, Shard(shard_index))
fee = (
2021-06-03 17:11:47 +00:00
(state.shard_gasprice * commitment.length)
2021-05-28 18:18:29 +00:00
// TARGET_SAMPLES_PER_BLOCK
)
decrease_balance(state, proposer, fee)
# Track updated gas price
new_gasprice = compute_updated_gasprice(
new_gasprice,
2021-06-03 17:11:47 +00:00
commitment.length,
2021-05-28 18:18:29 +00:00
adjustment_quotient,
)
2020-12-09 07:29:21 +00:00
state.shard_gasprice = new_gasprice
```
2021-05-29 21:55:16 +00:00
#### `reset_pending_shard_work`
2020-12-09 07:29:21 +00:00
```python
2021-05-29 21:55:16 +00:00
def reset_pending_shard_work(state: BeaconState) -> None:
2021-05-28 19:26:06 +00:00
# Add dummy "empty" PendingShardHeader (default vote if no shard header is available)
2021-01-04 18:17:30 +00:00
next_epoch = get_current_epoch(state) + 1
next_epoch_start_slot = compute_start_slot_at_epoch(next_epoch)
2021-05-14 19:02:46 +00:00
committees_per_slot = get_committee_count_per_slot(state, next_epoch)
2021-05-28 18:18:29 +00:00
active_shards = get_active_shard_count(state, next_epoch)
2021-05-28 19:26:06 +00:00
2021-04-24 14:33:53 +00:00
for slot in range(next_epoch_start_slot, next_epoch_start_slot + SLOTS_PER_EPOCH):
2021-05-28 18:18:29 +00:00
buffer_index = slot % SHARD_STATE_MEMORY_SLOTS
2021-05-28 19:26:06 +00:00
# Reset the shard work tracking
2021-05-29 19:28:00 +00:00
state.shard_buffer[buffer_index] = [ShardWork() for _ in range(active_shards)]
2021-05-28 18:18:29 +00:00
start_shard = get_start_shard(state, slot)
2021-05-31 16:55:08 +00:00
for committee_index in range(committees_per_slot):
shard = (start_shard + committee_index) % active_shards
# a committee is available, initialize a pending shard-header list
2021-04-27 14:09:16 +00:00
committee_length = len(get_beacon_committee(state, slot, committee_index))
2021-05-31 16:55:08 +00:00
state.shard_buffer[buffer_index][shard].change(
2021-06-03 15:32:35 +00:00
selector=SHARD_WORK_PENDING,
2021-05-31 16:55:08 +00:00
value=List[PendingShardHeader, MAX_SHARD_HEADERS_PER_SHARD](
PendingShardHeader(
commitment=DataCommitment(),
root=Root(),
votes=Bitlist[MAX_VALIDATORS_PER_COMMITTEE]([0] * committee_length),
weight=0,
update_slot=slot,
2021-05-28 18:18:29 +00:00
)
)
2021-05-31 16:55:08 +00:00
)
2021-06-03 15:32:35 +00:00
# a shard without committee available defaults to SHARD_WORK_UNCONFIRMED.
2019-10-12 14:59:51 +00:00
```
2019-11-15 22:42:28 +00:00
2021-05-29 21:55:16 +00:00
#### `process_shard_epoch_increment`
2019-11-15 22:42:28 +00:00
2021-03-18 00:06:37 +00:00
```python
def process_shard_epoch_increment(state: BeaconState) -> None:
# Update current_epoch_start_shard
state.current_epoch_start_shard = get_start_shard(state, Slot(state.slot + 1))
```