2023-01-09 22:44:44 +00:00
|
|
|
# Copyright (c) 2018-2023 Status Research & Development GmbH
|
2018-11-23 22:44:43 +00:00
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2018-11-23 22:44:43 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# Helpers and functions pertaining to managing the validator set
|
|
|
|
|
2023-01-20 14:14:37 +00:00
|
|
|
{.push raises: [].}
|
2020-04-22 05:53:02 +00:00
|
|
|
|
2018-11-23 19:42:47 +00:00
|
|
|
import
|
2022-01-06 11:25:35 +00:00
|
|
|
./datatypes/[phase0, altair, bellatrix],
|
2021-08-12 13:08:20 +00:00
|
|
|
./helpers
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
export helpers
|
2018-11-23 19:42:47 +00:00
|
|
|
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
const
|
|
|
|
SEED_SIZE = sizeof(Eth2Digest)
|
|
|
|
ROUND_SIZE = 1
|
|
|
|
POSITION_WINDOW_SIZE = 4
|
|
|
|
PIVOT_VIEW_SIZE = SEED_SIZE + ROUND_SIZE
|
|
|
|
TOTAL_SIZE = PIVOT_VIEW_SIZE + POSITION_WINDOW_SIZE
|
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#compute_shuffled_index
|
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#compute_committee
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
# Port of https://github.com/protolambda/zrnt/blob/master/eth2/beacon/shuffle.go
|
|
|
|
# Shuffles or unshuffles, depending on the `dir` (true for shuffling, false for unshuffling
|
|
|
|
func shuffle_list*(input: var seq[ValidatorIndex], seed: Eth2Digest) =
|
|
|
|
let list_size = input.lenu64
|
|
|
|
|
|
|
|
if list_size <= 1: return
|
|
|
|
|
|
|
|
var buf {.noinit.}: array[TOTAL_SIZE, byte]
|
|
|
|
|
|
|
|
# Seed is always the first 32 bytes of the hash input, we never have to change
|
|
|
|
# this part of the buffer.
|
|
|
|
buf[0..<32] = seed.data
|
|
|
|
|
|
|
|
# The original code includes a direction flag, but only the reverse direction
|
|
|
|
# is used in eth2, so we simplify it here
|
|
|
|
for r in 0'u8..<SHUFFLE_ROUND_COUNT.uint8:
|
|
|
|
# spec: pivot = bytes_to_int(hash(seed + int_to_bytes1(round))[0:8]) % list_size
|
|
|
|
# This is the "int_to_bytes1(round)", appended to the seed.
|
|
|
|
buf[SEED_SIZE] = (SHUFFLE_ROUND_COUNT.uint8 - r - 1)
|
|
|
|
|
|
|
|
# Seed is already in place, now just hash the correct part of the buffer,
|
|
|
|
# and take a uint64 from it, and modulo it to get a pivot within range.
|
|
|
|
let
|
|
|
|
pivotDigest = eth2digest(buf.toOpenArray(0, PIVOT_VIEW_SIZE - 1))
|
2022-01-08 20:06:34 +00:00
|
|
|
pivot = bytes_to_uint64(pivotDigest.data.toOpenArray(0, 7)) mod list_size
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
|
|
|
|
# Split up the for-loop in two:
|
|
|
|
# 1. Handle the part from 0 (incl) to pivot (incl). This is mirrored around
|
|
|
|
# (pivot / 2)
|
|
|
|
# 2. Handle the part from pivot (excl) to N (excl). This is mirrored around
|
|
|
|
# ((pivot / 2) + (size/2))
|
|
|
|
# The pivot defines a split in the array, with each of the splits mirroring
|
|
|
|
# their data within the split.
|
|
|
|
# Print out some example even/odd sized index lists, with some even/odd pivots,
|
|
|
|
# and you can deduce how the mirroring works exactly.
|
|
|
|
# Note that the mirror is strict enough to not consider swapping the index
|
|
|
|
# @mirror with itself.
|
|
|
|
# Since we are iterating through the "positions" in order, we can just
|
|
|
|
# repeat the hash every 256th position.
|
|
|
|
# No need to pre-compute every possible hash for efficiency like in the
|
|
|
|
# example code.
|
|
|
|
# We only need it consecutively (we are going through each in reverse order
|
|
|
|
# however, but same thing)
|
|
|
|
|
|
|
|
# spec: source = hash(seed + int_to_bytes1(round) + int_to_bytes4(position // 256))
|
|
|
|
# - seed is still in 0:32 (excl., 32 bytes)
|
|
|
|
# - round number is still in 32
|
|
|
|
# - mix in the position for randomness, except the last byte of it,
|
|
|
|
# which will be used later to select a bit from the resulting hash.
|
|
|
|
# We start from the pivot position, and work back to the mirror position
|
|
|
|
# (of the part left to the pivot).
|
|
|
|
# This makes us process each pear exactly once (instead of unnecessarily
|
|
|
|
# twice, like in the spec)
|
2022-01-08 20:06:34 +00:00
|
|
|
buf[33..<37] = uint_to_bytes(uint32(pivot shr 8))
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
|
|
|
|
var
|
|
|
|
mirror = (pivot + 1) shr 1
|
|
|
|
source = eth2digest(buf)
|
|
|
|
byteV = source.data[(pivot and 0xff) shr 3]
|
|
|
|
i = 0'u64
|
|
|
|
j = pivot
|
|
|
|
|
|
|
|
template shuffle =
|
|
|
|
while i < mirror:
|
|
|
|
# The pair is i,j. With j being the bigger of the two, hence the "position" identifier of the pair.
|
|
|
|
# Every 256th bit (aligned to j).
|
|
|
|
if (j and 0xff) == 0xff:
|
|
|
|
# just overwrite the last part of the buffer, reuse the start (seed, round)
|
2022-01-08 20:06:34 +00:00
|
|
|
buf[33..<37] = uint_to_bytes(uint32(j shr 8))
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
source = eth2digest(buf)
|
|
|
|
|
|
|
|
# Same trick with byte retrieval. Only every 8th.
|
|
|
|
if (j and 0x07) == 0x7:
|
|
|
|
byteV = source.data[(j and 0xff'u64) shr 3]
|
|
|
|
|
|
|
|
let
|
|
|
|
bitV = (byteV shr (j and 0x7)) and 0x1
|
|
|
|
|
|
|
|
if bitV == 1:
|
|
|
|
swap(input[i], input[j])
|
|
|
|
|
|
|
|
i.inc
|
|
|
|
j.dec
|
|
|
|
|
|
|
|
shuffle
|
|
|
|
|
|
|
|
# Now repeat, but for the part after the pivot.
|
|
|
|
mirror = (pivot + list_size + 1) shr 1
|
|
|
|
let lend = list_size - 1
|
|
|
|
# Again, seed and round input is in place, just update the position.
|
|
|
|
# We start at the end, and work back to the mirror point.
|
|
|
|
# This makes us process each pear exactly once (instead of unnecessarily twice, like in the spec)
|
2022-01-08 20:06:34 +00:00
|
|
|
buf[33..<37] = uint_to_bytes(uint32(lend shr 8))
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
|
|
|
|
source = eth2digest(buf)
|
|
|
|
byteV = source.data[(lend and 0xff) shr 3]
|
|
|
|
i = pivot + 1'u64
|
|
|
|
j = lend
|
|
|
|
|
|
|
|
shuffle
|
2019-03-01 23:50:01 +00:00
|
|
|
|
2021-05-28 15:25:58 +00:00
|
|
|
func get_shuffled_active_validator_indices*(
|
2021-11-05 07:34:34 +00:00
|
|
|
state: ForkyBeaconState, epoch: Epoch): seq[ValidatorIndex] =
|
2020-05-29 06:10:20 +00:00
|
|
|
# Non-spec function, to cache a data structure from which one can cheaply
|
|
|
|
# compute both get_active_validator_indexes() and get_beacon_committee().
|
speed up shuffling
Replace shuffling function with zrnt version - `get_shuffled_seq` in
particular puts more strain on the GC by allocating superfluous seq's
which turns out to have a significant impact on block processing (when
replaying blocks for example) - 4x improvement on non-epoch, 1.5x on
epoch blocks (replay is done without signature checking)
Medalla, first 10k slots - pre:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
76855.848, 0.000, 76855.848, 76855.848, 1,
Initialize DB
1.073, 0.914, 0.071, 12.454, 7831,
Load block from database
31.382, 0.000, 31.382, 31.382, 1,
Load state from database
85.644, 30.350, 3.056, 466.136, 7519,
Apply block
506.569, 91.129, 130.654, 874.786, 312,
Apply epoch block
```
post:
```
Loaded 68973 blocks, head slot 117077
All time are ms
Average, StdDev, Min, Max, Samples,
Test
Validation is turned off meaning that no BLS operations are performed
72457.303, 0.000, 72457.303, 72457.303, 1,
Initialize DB
1.015, 0.858, 0.070, 11.231, 7831,
Load block from database
28.983, 0.000, 28.983, 28.983, 1,
Load state from database
21.725, 17.461, 2.659, 393.217, 7519,
Apply block
324.012, 33.954, 45.452, 440.532, 312,
Apply epoch block
```
2020-08-21 10:06:26 +00:00
|
|
|
var active_validator_indices = get_active_validator_indices(state, epoch)
|
|
|
|
|
|
|
|
shuffle_list(
|
|
|
|
active_validator_indices, get_seed(state, epoch, DOMAIN_BEACON_ATTESTER))
|
|
|
|
|
|
|
|
active_validator_indices
|
2020-05-29 06:10:20 +00:00
|
|
|
|
2020-07-15 10:44:18 +00:00
|
|
|
func get_shuffled_active_validator_indices*(
|
2021-11-05 07:34:34 +00:00
|
|
|
cache: var StateCache, state: ForkyBeaconState, epoch: Epoch):
|
2020-07-27 16:04:44 +00:00
|
|
|
var seq[ValidatorIndex] =
|
|
|
|
# `cache` comes first because of nim's borrowing rules for the `var` return -
|
|
|
|
# the `var` returns avoids copying the validator set.
|
|
|
|
cache.shuffled_active_validator_indices.withValue(epoch, validator_indices) do:
|
|
|
|
return validator_indices[]
|
|
|
|
do:
|
|
|
|
let indices = get_shuffled_active_validator_indices(state, epoch)
|
|
|
|
return cache.shuffled_active_validator_indices.mgetOrPut(epoch, indices)
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_shuffled_active_validator_indices*(
|
|
|
|
cache: var StateCache, state: ForkedHashedBeaconState, epoch: Epoch):
|
|
|
|
seq[ValidatorIndex] =
|
|
|
|
withState(state):
|
2022-08-26 14:14:18 +00:00
|
|
|
cache.get_shuffled_active_validator_indices(forkyState.data, epoch)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_active_validator_indices
|
2021-11-05 07:34:34 +00:00
|
|
|
func count_active_validators*(state: ForkyBeaconState,
|
2020-07-27 16:04:44 +00:00
|
|
|
epoch: Epoch,
|
|
|
|
cache: var StateCache): uint64 =
|
|
|
|
cache.get_shuffled_active_validator_indices(state, epoch).lenu64
|
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_committee_count_per_slot
|
2020-07-27 16:04:44 +00:00
|
|
|
func get_committee_count_per_slot*(num_active_validators: uint64): uint64 =
|
|
|
|
clamp(
|
|
|
|
num_active_validators div SLOTS_PER_EPOCH div TARGET_COMMITTEE_SIZE,
|
|
|
|
1'u64, MAX_COMMITTEES_PER_SLOT)
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_committee_count_per_slot*(state: ForkyBeaconState,
|
2020-07-27 16:04:44 +00:00
|
|
|
epoch: Epoch,
|
|
|
|
cache: var StateCache): uint64 =
|
2021-10-27 18:40:17 +00:00
|
|
|
## Return the number of committees at ``slot``.
|
2020-07-27 16:04:44 +00:00
|
|
|
let
|
|
|
|
active_validator_count = count_active_validators(state, epoch, cache)
|
2022-01-08 23:28:49 +00:00
|
|
|
get_committee_count_per_slot(active_validator_count)
|
2020-07-27 16:04:44 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_committee_count_per_slot*(state: ForkedHashedBeaconState,
|
|
|
|
epoch: Epoch,
|
|
|
|
cache: var StateCache): uint64 =
|
|
|
|
withState(state):
|
2022-08-26 14:14:18 +00:00
|
|
|
get_committee_count_per_slot(forkyState.data, epoch, cache)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-01-08 23:28:49 +00:00
|
|
|
iterator get_committee_indices*(committee_count_per_slot: uint64): CommitteeIndex =
|
|
|
|
for idx in 0'u64..<min(committee_count_per_slot, MAX_COMMITTEES_PER_SLOT):
|
|
|
|
let committee_index = CommitteeIndex.init(idx).expect("value clamped")
|
|
|
|
yield committee_index
|
2021-08-28 09:00:00 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#compute_committee
|
2020-08-27 07:34:12 +00:00
|
|
|
func compute_committee_slice*(
|
|
|
|
active_validators, index, count: uint64): Slice[int] =
|
|
|
|
doAssert active_validators <= ValidatorIndex.high.uint64
|
|
|
|
|
2021-08-28 09:00:00 +00:00
|
|
|
if index < count:
|
|
|
|
let
|
|
|
|
start = (active_validators * index) div count
|
|
|
|
endIdx = (active_validators * (index + 1)) div count
|
2020-08-27 07:34:12 +00:00
|
|
|
|
2021-08-28 09:00:00 +00:00
|
|
|
start.int..(endIdx.int - 1)
|
|
|
|
else:
|
|
|
|
0 .. -1
|
2020-08-27 07:34:12 +00:00
|
|
|
|
2020-10-22 10:53:33 +00:00
|
|
|
iterator compute_committee*(shuffled_indices: seq[ValidatorIndex],
|
2022-01-08 23:28:49 +00:00
|
|
|
index: uint64, count: uint64): (int, ValidatorIndex) =
|
2020-10-22 10:53:33 +00:00
|
|
|
let
|
|
|
|
slice = compute_committee_slice(shuffled_indices.lenu64, index, count)
|
2022-01-08 23:28:49 +00:00
|
|
|
var idx = 0
|
2020-10-22 10:53:33 +00:00
|
|
|
for i in slice:
|
2022-01-08 23:28:49 +00:00
|
|
|
yield (idx, shuffled_indices[i])
|
|
|
|
idx += 1
|
2020-10-22 10:53:33 +00:00
|
|
|
|
2020-07-28 13:54:32 +00:00
|
|
|
func compute_committee*(shuffled_indices: seq[ValidatorIndex],
|
2020-06-01 07:44:50 +00:00
|
|
|
index: uint64, count: uint64): seq[ValidatorIndex] =
|
2019-07-01 09:05:22 +00:00
|
|
|
## Return the committee corresponding to ``indices``, ``seed``, ``index``,
|
|
|
|
## and committee ``count``.
|
2020-07-27 16:04:44 +00:00
|
|
|
## In this version, we pass in the shuffled indices meaning we no longer need
|
|
|
|
## the seed.
|
2020-06-01 18:27:57 +00:00
|
|
|
let
|
2020-08-27 07:34:12 +00:00
|
|
|
slice = compute_committee_slice(shuffled_indices.lenu64, index, count)
|
2020-04-22 05:53:02 +00:00
|
|
|
|
2020-06-01 18:27:57 +00:00
|
|
|
# In spec, this calls get_shuffled_index() every time, but that's wasteful
|
|
|
|
# Here, get_beacon_committee() gets the shuffled version.
|
2020-08-27 07:34:12 +00:00
|
|
|
shuffled_indices[slice]
|
2019-05-23 11:13:02 +00:00
|
|
|
|
2020-08-27 07:34:12 +00:00
|
|
|
func compute_committee_len*(
|
|
|
|
active_validators, index, count: uint64): uint64 =
|
2020-07-27 16:04:44 +00:00
|
|
|
## Return the committee corresponding to ``indices``, ``seed``, ``index``,
|
|
|
|
## and committee ``count``.
|
|
|
|
|
|
|
|
let
|
2020-08-27 07:34:12 +00:00
|
|
|
slice = compute_committee_slice(active_validators, index, count)
|
2020-07-27 16:04:44 +00:00
|
|
|
|
2020-08-27 07:34:12 +00:00
|
|
|
(slice.b - slice.a + 1).uint64
|
2020-07-27 16:04:44 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_beacon_committee
|
2020-10-22 10:53:33 +00:00
|
|
|
iterator get_beacon_committee*(
|
2021-11-05 07:34:34 +00:00
|
|
|
state: ForkyBeaconState, slot: Slot, index: CommitteeIndex,
|
2022-01-08 23:28:49 +00:00
|
|
|
cache: var StateCache): (int, ValidatorIndex) =
|
2020-10-22 10:53:33 +00:00
|
|
|
## Return the beacon committee at ``slot`` for ``index``.
|
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(slot)
|
2020-10-22 10:53:33 +00:00
|
|
|
committees_per_slot = get_committee_count_per_slot(state, epoch, cache)
|
2022-01-08 23:28:49 +00:00
|
|
|
for index_in_committee, idx in compute_committee(
|
2020-10-22 10:53:33 +00:00
|
|
|
cache.get_shuffled_active_validator_indices(state, epoch),
|
|
|
|
(slot mod SLOTS_PER_EPOCH) * committees_per_slot +
|
|
|
|
index.uint64,
|
|
|
|
committees_per_slot * SLOTS_PER_EPOCH
|
2022-01-08 23:28:49 +00:00
|
|
|
): yield (index_in_committee, idx)
|
2020-10-22 10:53:33 +00:00
|
|
|
|
2020-04-15 09:01:36 +00:00
|
|
|
func get_beacon_committee*(
|
2021-11-05 07:34:34 +00:00
|
|
|
state: ForkyBeaconState, slot: Slot, index: CommitteeIndex,
|
2020-04-15 09:01:36 +00:00
|
|
|
cache: var StateCache): seq[ValidatorIndex] =
|
2020-09-08 08:54:55 +00:00
|
|
|
## Return the beacon committee at ``slot`` for ``index``.
|
2019-11-07 21:13:27 +00:00
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(slot)
|
2020-07-27 16:04:44 +00:00
|
|
|
committees_per_slot = get_committee_count_per_slot(state, epoch, cache)
|
|
|
|
compute_committee(
|
|
|
|
cache.get_shuffled_active_validator_indices(state, epoch),
|
|
|
|
(slot mod SLOTS_PER_EPOCH) * committees_per_slot +
|
|
|
|
index.uint64,
|
|
|
|
committees_per_slot * SLOTS_PER_EPOCH
|
|
|
|
)
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_beacon_committee*(
|
|
|
|
state: ForkedHashedBeaconState, slot: Slot, index: CommitteeIndex,
|
|
|
|
cache: var StateCache): seq[ValidatorIndex] =
|
|
|
|
# This one is used by tests/, ncli/, and a couple of places in RPC
|
|
|
|
# TODO use the iterator version alone, to remove the risk of using
|
|
|
|
# diverging get_beacon_committee() in tests and beacon_chain/ by a
|
|
|
|
# wrapper approach (e.g., toSeq). This is a perf tradeoff for test
|
|
|
|
# correctness/consistency.
|
|
|
|
withState(state):
|
2022-08-26 14:14:18 +00:00
|
|
|
get_beacon_committee(forkyState.data, slot, index, cache)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2023-05-10 14:04:48 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_beacon_committee
|
2020-07-27 16:04:44 +00:00
|
|
|
func get_beacon_committee_len*(
|
2021-11-05 07:34:34 +00:00
|
|
|
state: ForkyBeaconState, slot: Slot, index: CommitteeIndex,
|
2020-07-27 16:04:44 +00:00
|
|
|
cache: var StateCache): uint64 =
|
2023-05-10 14:04:48 +00:00
|
|
|
## Return the number of members in the beacon committee at ``slot``
|
|
|
|
## for ``index``.
|
2020-07-27 16:04:44 +00:00
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(slot)
|
2020-07-27 16:04:44 +00:00
|
|
|
committees_per_slot = get_committee_count_per_slot(state, epoch, cache)
|
2019-11-07 21:13:27 +00:00
|
|
|
|
2020-07-27 16:04:44 +00:00
|
|
|
compute_committee_len(
|
|
|
|
count_active_validators(state, epoch, cache),
|
|
|
|
(slot mod SLOTS_PER_EPOCH) * committees_per_slot +
|
|
|
|
index.uint64,
|
|
|
|
committees_per_slot * SLOTS_PER_EPOCH
|
|
|
|
)
|
2019-11-07 21:13:27 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_beacon_committee_len*(
|
|
|
|
state: ForkedHashedBeaconState, slot: Slot, index: CommitteeIndex,
|
|
|
|
cache: var StateCache): uint64 =
|
|
|
|
# This one is used by tests
|
|
|
|
withState(state):
|
2022-08-26 14:14:18 +00:00
|
|
|
get_beacon_committee_len(forkyState.data, slot, index, cache)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#compute_shuffled_index
|
2021-05-28 15:25:58 +00:00
|
|
|
func compute_shuffled_index*(
|
2020-07-15 10:44:18 +00:00
|
|
|
index: uint64, index_count: uint64, seed: Eth2Digest): uint64 =
|
2020-09-08 08:54:55 +00:00
|
|
|
## Return the shuffled index corresponding to ``seed`` (and ``index_count``).
|
2020-07-15 10:44:18 +00:00
|
|
|
doAssert index < index_count
|
|
|
|
|
|
|
|
var
|
performance fixes (#2259)
* performance fixes
* don't mark tree cache as dirty on read-only List accesses
* store only blob in memory for keys and signatures, parse blob lazily
* compare public keys by blob instead of parsing / converting to raw
* compare Eth2Digest using non-constant-time comparison
* avoid some unnecessary validator copying
This branch will in particular speed up deposit processing which has
been slowing down block replay.
Pre (mainnet, 1600 blocks):
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3450.269, 0.000, 3450.269, 3450.269, 1, Initialize DB
0.417, 0.822, 0.036, 21.098, 1400, Load block from database
16.521, 0.000, 16.521, 16.521, 1, Load state from database
27.906, 50.846, 8.104, 1507.633, 1350, Apply block
52.617, 37.029, 20.640, 135.938, 50, Apply epoch block
```
Post:
```
3502.715, 0.000, 3502.715, 3502.715, 1, Initialize DB
0.080, 0.560, 0.035, 21.015, 1400, Load block from database
17.595, 0.000, 17.595, 17.595, 1, Load state from database
15.706, 11.028, 8.300, 107.537, 1350, Apply block
33.217, 12.622, 17.331, 60.580, 50, Apply epoch block
```
* more perf fixes
* load EpochRef cache into StateCache more aggressively
* point out security concern with public key cache
* reuse proposer index from state when processing block
* avoid genericAssign in a few more places
* don't parse key when signature is unparseable
* fix `==` overload for Eth2Digest
* preallocate validator list when getting active validators
* speed up proposer index calculation a little bit
* reuse cache when replaying blocks in ncli_db
* avoid a few more copying loops
```
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3279.158, 0.000, 3279.158, 3279.158, 1, Initialize DB
0.072, 0.357, 0.035, 13.400, 1400, Load block from database
17.295, 0.000, 17.295, 17.295, 1, Load state from database
5.918, 9.896, 0.198, 98.028, 1350, Apply block
15.888, 10.951, 7.902, 39.535, 50, Apply epoch block
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
* clear full balance cache before processing rewards and penalties
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3947.901, 0.000, 3947.901, 3947.901, 1, Initialize DB
0.124, 0.506, 0.026, 202.370, 363345, Load block from database
97.614, 0.000, 97.614, 97.614, 1, Load state from database
0.186, 0.188, 0.012, 99.561, 357262, Advance slot, non-epoch
14.161, 5.966, 1.099, 395.511, 11524, Advance slot, epoch
1.372, 4.170, 0.017, 276.401, 363345, Apply block, no slot processing
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
2021-01-25 12:04:18 +00:00
|
|
|
source_buffer {.noinit.}: array[(32+1+4), byte]
|
2020-07-15 10:44:18 +00:00
|
|
|
cur_idx_permuted = index
|
|
|
|
|
|
|
|
source_buffer[0..31] = seed.data
|
|
|
|
|
|
|
|
# Swap or not (https://link.springer.com/content/pdf/10.1007%2F978-3-642-32009-5_1.pdf)
|
|
|
|
# See the 'generalized domain' algorithm on page 3
|
2020-07-27 16:04:44 +00:00
|
|
|
for current_round in 0'u8 ..< SHUFFLE_ROUND_COUNT.uint8:
|
|
|
|
source_buffer[32] = current_round
|
2020-07-15 10:44:18 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
# If using multiple indices, can amortize this
|
|
|
|
pivot =
|
performance fixes (#2259)
* performance fixes
* don't mark tree cache as dirty on read-only List accesses
* store only blob in memory for keys and signatures, parse blob lazily
* compare public keys by blob instead of parsing / converting to raw
* compare Eth2Digest using non-constant-time comparison
* avoid some unnecessary validator copying
This branch will in particular speed up deposit processing which has
been slowing down block replay.
Pre (mainnet, 1600 blocks):
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3450.269, 0.000, 3450.269, 3450.269, 1, Initialize DB
0.417, 0.822, 0.036, 21.098, 1400, Load block from database
16.521, 0.000, 16.521, 16.521, 1, Load state from database
27.906, 50.846, 8.104, 1507.633, 1350, Apply block
52.617, 37.029, 20.640, 135.938, 50, Apply epoch block
```
Post:
```
3502.715, 0.000, 3502.715, 3502.715, 1, Initialize DB
0.080, 0.560, 0.035, 21.015, 1400, Load block from database
17.595, 0.000, 17.595, 17.595, 1, Load state from database
15.706, 11.028, 8.300, 107.537, 1350, Apply block
33.217, 12.622, 17.331, 60.580, 50, Apply epoch block
```
* more perf fixes
* load EpochRef cache into StateCache more aggressively
* point out security concern with public key cache
* reuse proposer index from state when processing block
* avoid genericAssign in a few more places
* don't parse key when signature is unparseable
* fix `==` overload for Eth2Digest
* preallocate validator list when getting active validators
* speed up proposer index calculation a little bit
* reuse cache when replaying blocks in ncli_db
* avoid a few more copying loops
```
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3279.158, 0.000, 3279.158, 3279.158, 1, Initialize DB
0.072, 0.357, 0.035, 13.400, 1400, Load block from database
17.295, 0.000, 17.295, 17.295, 1, Load state from database
5.918, 9.896, 0.198, 98.028, 1350, Apply block
15.888, 10.951, 7.902, 39.535, 50, Apply epoch block
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
* clear full balance cache before processing rewards and penalties
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3947.901, 0.000, 3947.901, 3947.901, 1, Initialize DB
0.124, 0.506, 0.026, 202.370, 363345, Load block from database
97.614, 0.000, 97.614, 97.614, 1, Load state from database
0.186, 0.188, 0.012, 99.561, 357262, Advance slot, non-epoch
14.161, 5.966, 1.099, 395.511, 11524, Advance slot, epoch
1.372, 4.170, 0.017, 276.401, 363345, Apply block, no slot processing
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
2021-01-25 12:04:18 +00:00
|
|
|
bytes_to_uint64(eth2digest(source_buffer.toOpenArray(0, 32)).data.toOpenArray(0, 7)) mod
|
2020-07-15 10:44:18 +00:00
|
|
|
index_count
|
|
|
|
|
|
|
|
flip = ((index_count + pivot) - cur_idx_permuted) mod index_count
|
performance fixes (#2259)
* performance fixes
* don't mark tree cache as dirty on read-only List accesses
* store only blob in memory for keys and signatures, parse blob lazily
* compare public keys by blob instead of parsing / converting to raw
* compare Eth2Digest using non-constant-time comparison
* avoid some unnecessary validator copying
This branch will in particular speed up deposit processing which has
been slowing down block replay.
Pre (mainnet, 1600 blocks):
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3450.269, 0.000, 3450.269, 3450.269, 1, Initialize DB
0.417, 0.822, 0.036, 21.098, 1400, Load block from database
16.521, 0.000, 16.521, 16.521, 1, Load state from database
27.906, 50.846, 8.104, 1507.633, 1350, Apply block
52.617, 37.029, 20.640, 135.938, 50, Apply epoch block
```
Post:
```
3502.715, 0.000, 3502.715, 3502.715, 1, Initialize DB
0.080, 0.560, 0.035, 21.015, 1400, Load block from database
17.595, 0.000, 17.595, 17.595, 1, Load state from database
15.706, 11.028, 8.300, 107.537, 1350, Apply block
33.217, 12.622, 17.331, 60.580, 50, Apply epoch block
```
* more perf fixes
* load EpochRef cache into StateCache more aggressively
* point out security concern with public key cache
* reuse proposer index from state when processing block
* avoid genericAssign in a few more places
* don't parse key when signature is unparseable
* fix `==` overload for Eth2Digest
* preallocate validator list when getting active validators
* speed up proposer index calculation a little bit
* reuse cache when replaying blocks in ncli_db
* avoid a few more copying loops
```
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3279.158, 0.000, 3279.158, 3279.158, 1, Initialize DB
0.072, 0.357, 0.035, 13.400, 1400, Load block from database
17.295, 0.000, 17.295, 17.295, 1, Load state from database
5.918, 9.896, 0.198, 98.028, 1350, Apply block
15.888, 10.951, 7.902, 39.535, 50, Apply epoch block
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
* clear full balance cache before processing rewards and penalties
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3947.901, 0.000, 3947.901, 3947.901, 1, Initialize DB
0.124, 0.506, 0.026, 202.370, 363345, Load block from database
97.614, 0.000, 97.614, 97.614, 1, Load state from database
0.186, 0.188, 0.012, 99.561, 357262, Advance slot, non-epoch
14.161, 5.966, 1.099, 395.511, 11524, Advance slot, epoch
1.372, 4.170, 0.017, 276.401, 363345, Apply block, no slot processing
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
2021-01-25 12:04:18 +00:00
|
|
|
position = max(cur_idx_permuted, flip)
|
2022-01-08 20:06:34 +00:00
|
|
|
source_buffer[33..36] = uint_to_bytes(uint32(position shr 8))
|
2020-07-15 10:44:18 +00:00
|
|
|
let
|
|
|
|
source = eth2digest(source_buffer).data
|
performance fixes (#2259)
* performance fixes
* don't mark tree cache as dirty on read-only List accesses
* store only blob in memory for keys and signatures, parse blob lazily
* compare public keys by blob instead of parsing / converting to raw
* compare Eth2Digest using non-constant-time comparison
* avoid some unnecessary validator copying
This branch will in particular speed up deposit processing which has
been slowing down block replay.
Pre (mainnet, 1600 blocks):
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3450.269, 0.000, 3450.269, 3450.269, 1, Initialize DB
0.417, 0.822, 0.036, 21.098, 1400, Load block from database
16.521, 0.000, 16.521, 16.521, 1, Load state from database
27.906, 50.846, 8.104, 1507.633, 1350, Apply block
52.617, 37.029, 20.640, 135.938, 50, Apply epoch block
```
Post:
```
3502.715, 0.000, 3502.715, 3502.715, 1, Initialize DB
0.080, 0.560, 0.035, 21.015, 1400, Load block from database
17.595, 0.000, 17.595, 17.595, 1, Load state from database
15.706, 11.028, 8.300, 107.537, 1350, Apply block
33.217, 12.622, 17.331, 60.580, 50, Apply epoch block
```
* more perf fixes
* load EpochRef cache into StateCache more aggressively
* point out security concern with public key cache
* reuse proposer index from state when processing block
* avoid genericAssign in a few more places
* don't parse key when signature is unparseable
* fix `==` overload for Eth2Digest
* preallocate validator list when getting active validators
* speed up proposer index calculation a little bit
* reuse cache when replaying blocks in ncli_db
* avoid a few more copying loops
```
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3279.158, 0.000, 3279.158, 3279.158, 1, Initialize DB
0.072, 0.357, 0.035, 13.400, 1400, Load block from database
17.295, 0.000, 17.295, 17.295, 1, Load state from database
5.918, 9.896, 0.198, 98.028, 1350, Apply block
15.888, 10.951, 7.902, 39.535, 50, Apply epoch block
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
* clear full balance cache before processing rewards and penalties
```
All time are ms
Average, StdDev, Min, Max, Samples, Test
Validation is turned off meaning that no BLS operations are performed
3947.901, 0.000, 3947.901, 3947.901, 1, Initialize DB
0.124, 0.506, 0.026, 202.370, 363345, Load block from database
97.614, 0.000, 97.614, 97.614, 1, Load state from database
0.186, 0.188, 0.012, 99.561, 357262, Advance slot, non-epoch
14.161, 5.966, 1.099, 395.511, 11524, Advance slot, epoch
1.372, 4.170, 0.017, 276.401, 363345, Apply block, no slot processing
0.000, 0.000, 0.000, 0.000, 0, Database block store
```
2021-01-25 12:04:18 +00:00
|
|
|
byte_value = source[(position mod 256) shr 3]
|
2020-07-15 10:44:18 +00:00
|
|
|
bit = (byte_value shr (position mod 8)) mod 2
|
|
|
|
|
|
|
|
cur_idx_permuted = if bit != 0: flip else: cur_idx_permuted
|
|
|
|
|
|
|
|
cur_idx_permuted
|
0.6.2 updates (#275)
* update process_justification_and_finalization to 0.6.2; mark AttesterSlashing as 0.6.2
* replace get_effective_balance(...) with state.validator_registry[idx].effective_balance; rm get_effective_balance, process_ejections, should_update_validator_registry, update_validator_registry, and update_registry_and_shuffling_data; update get_total_balance to 0.6.2; implement process_registry_updates
* rm exit_validator; implement is_slashable_attestation_data; partly update processAttesterSlashings
* mark HistoricalBatch and Eth1Data as 0.6.2; implement get_shard_delta(...); replace 0.5 finish_epoch_update with 0.6 process_final_updates
* mark increase_balance, decrease_balance, get_delayed_activation_exit_epoch, bls_aggregate_pubkeys, bls_verify_multiple, Attestation, Transfer, slot_to_epoch, Crosslink, get_current_epoch, int_to_bytes*, various constants, processEth1Data, processTransfers, and verifyStateRoot as 0.6.2; rm is_double_vote and is_surround_vote
* mark get_bitfield_bit, verify_bitfield, ProposerSlashing, DepositData, VoluntaryExit, PendingAttestation, Fork, integer_squareroot, get_epoch_start_slot, is_active_validator, generate_seed, some constants to 0.6.2; rename MIN_PENALTY_QUOTIENT to MIN_SLASHING_PENALTY_QUOTIENT
* rm get_previous_total_balance, get_current_epoch_boundary_attestations, get_previous_epoch_boundary_attestations, and get_previous_epoch_matching_head_attestations
* update BeaconState to 0.6.2; simplify legacy get_crosslink_committees_at_slot infrastructure a bit by noting that registry_change is always false; reimplment 0.5 get_crosslink_committees_at_slot in terms of 0.6 get_crosslink_committee
* mark process_deposit(...), get_block_root_at_slot(...), get_block_root(...), Deposit, BeaconBlockHeader, BeaconBlockBody, hash(...), get_active_index_root(...), various constants, get_shard_delta(...), get_epoch_start_shard(...), get_crosslink_committee(...), processRandao(...), processVoluntaryExits(...), cacheState(...) as 0.6.2
* rm removed-since-0.5 split(...), is_power_of_2(...), get_shuffling(...); rm 0.5 versions of get_active_validator_indices and get_epoch_committee_count; add a few tests for integer_squareroot
* mark bytes_to_int(...) and advanceState(...) as 0.6.2
* rm 0.5 get_attesting_indices; update get_attesting_balance to 0.6.2
* another tiny commit to poke AppVeyor to maybe not timeout at connecting to GitHub partway through CI: mark get_churn_limit(...), initiate_validator_exit(...), and Validator as 0.6.2
* mark get_attestation_slot(...), AttestationDataAndCustodyBit, and BeaconBlock as 0.6.2
2019-06-03 10:31:04 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#compute_proposer_index
|
2021-11-05 07:34:34 +00:00
|
|
|
func compute_proposer_index(state: ForkyBeaconState,
|
2023-01-11 12:29:21 +00:00
|
|
|
indices: seq[ValidatorIndex], seed: Eth2Digest): Opt[ValidatorIndex] =
|
2020-09-08 08:54:55 +00:00
|
|
|
## Return from ``indices`` a random index sampled by effective balance.
|
2019-11-10 00:03:41 +00:00
|
|
|
const MAX_RANDOM_BYTE = 255
|
|
|
|
|
2019-12-04 10:49:59 +00:00
|
|
|
if len(indices) == 0:
|
2023-01-11 12:29:21 +00:00
|
|
|
return Opt.none(ValidatorIndex)
|
2019-05-23 11:13:02 +00:00
|
|
|
|
2020-07-26 18:55:48 +00:00
|
|
|
let seq_len = indices.lenu64
|
2019-11-06 15:50:12 +00:00
|
|
|
|
2019-05-23 11:13:02 +00:00
|
|
|
var
|
2020-07-15 10:44:18 +00:00
|
|
|
i = 0'u64
|
2019-11-10 00:03:41 +00:00
|
|
|
buffer: array[32+8, byte]
|
2019-05-23 11:13:02 +00:00
|
|
|
buffer[0..31] = seed.data
|
|
|
|
while true:
|
2022-01-08 20:06:34 +00:00
|
|
|
buffer[32..39] = uint_to_bytes(i div 32)
|
2019-05-23 11:13:02 +00:00
|
|
|
let
|
2020-07-15 10:44:18 +00:00
|
|
|
candidate_index =
|
|
|
|
indices[compute_shuffled_index(i mod seq_len, seq_len, seed)]
|
2020-06-16 12:16:43 +00:00
|
|
|
random_byte = (eth2digest(buffer).data)[i mod 32]
|
2020-07-15 10:44:18 +00:00
|
|
|
effective_balance = state.validators[candidate_index].effective_balance
|
0.7.0 updates which don't change semantics; mostly comment changes (#281)
* 0.7.0 updates which don't change semantics; mostly comment changes
* mark get_attesting_indices, bls_verify, ProposerSlashing, BeaconBlockBody, deposit contract constants, state list length constants, compute_committee, get_crosslink_committee, is_slashable_attestation_data, processAttesterSlashings as 0.7.0; rename BASE_REWARD_QUOTIENT to BASE_REWARD_FACTOR
* complete marking unchanged-in-0.7.0 datatypes as such; a few more have trivial field renamings, etc
2019-06-13 07:40:58 +00:00
|
|
|
if effective_balance * MAX_RANDOM_BYTE >=
|
|
|
|
MAX_EFFECTIVE_BALANCE * random_byte:
|
2023-01-11 12:29:21 +00:00
|
|
|
return Opt.some(candidate_index)
|
2019-05-23 11:13:02 +00:00
|
|
|
i += 1
|
2019-11-10 00:03:41 +00:00
|
|
|
|
2023-05-11 09:54:29 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_beacon_proposer_index
|
2021-05-28 15:25:58 +00:00
|
|
|
func get_beacon_proposer_index*(
|
2021-11-05 07:34:34 +00:00
|
|
|
state: ForkyBeaconState, cache: var StateCache, slot: Slot):
|
2023-01-11 12:29:21 +00:00
|
|
|
Opt[ValidatorIndex] =
|
2021-11-18 12:02:43 +00:00
|
|
|
let epoch = get_current_epoch(state)
|
|
|
|
|
|
|
|
if slot.epoch() != epoch:
|
|
|
|
# compute_proposer_index depends on `effective_balance`, therefore the
|
|
|
|
# beacon proposer index can only be computed for the "current" epoch:
|
|
|
|
# https://github.com/ethereum/consensus-specs/pull/772#issuecomment-475574357
|
2023-01-11 12:29:21 +00:00
|
|
|
return Opt.none(ValidatorIndex)
|
2021-11-18 12:02:43 +00:00
|
|
|
|
2020-07-27 16:04:44 +00:00
|
|
|
cache.beacon_proposer_indices.withValue(slot, proposer) do:
|
|
|
|
return proposer[]
|
|
|
|
do:
|
|
|
|
# Return the beacon proposer index at the current slot.
|
2019-11-10 00:03:41 +00:00
|
|
|
|
2020-07-27 16:04:44 +00:00
|
|
|
var buffer: array[32 + 8, byte]
|
|
|
|
buffer[0..31] = get_seed(state, epoch, DOMAIN_BEACON_PROPOSER).data
|
2019-11-10 00:03:41 +00:00
|
|
|
|
2021-11-18 12:02:43 +00:00
|
|
|
# There's exactly one beacon proposer per slot - the same validator may
|
|
|
|
# however propose several times in the same epoch (however unlikely)
|
2020-06-03 05:42:08 +00:00
|
|
|
let
|
2020-08-19 08:03:50 +00:00
|
|
|
# active validator indices are kept in cache but sorting them takes
|
|
|
|
# quite a while
|
|
|
|
indices = get_active_validator_indices(state, epoch)
|
|
|
|
|
2023-01-11 12:29:21 +00:00
|
|
|
var res: Opt[ValidatorIndex]
|
2022-01-11 10:01:54 +00:00
|
|
|
for epoch_slot in epoch.slots():
|
|
|
|
buffer[32..39] = uint_to_bytes(epoch_slot.asUInt64)
|
2020-08-19 08:03:50 +00:00
|
|
|
let seed = eth2digest(buffer)
|
|
|
|
let pi = compute_proposer_index(state, indices, seed)
|
2022-01-11 10:01:54 +00:00
|
|
|
if epoch_slot == slot:
|
2020-08-19 08:03:50 +00:00
|
|
|
res = pi
|
2022-01-11 10:01:54 +00:00
|
|
|
cache.beacon_proposer_indices[epoch_slot] = pi
|
2020-08-19 08:03:50 +00:00
|
|
|
|
|
|
|
return res
|
2020-02-20 22:22:59 +00:00
|
|
|
|
2023-05-10 14:04:48 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/beacon-chain.md#get_beacon_proposer_index
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_beacon_proposer_index*(state: ForkyBeaconState, cache: var StateCache):
|
2023-01-11 12:29:21 +00:00
|
|
|
Opt[ValidatorIndex] =
|
2023-05-10 14:04:48 +00:00
|
|
|
## Return the beacon proposer index at the current slot.
|
2020-06-04 12:03:16 +00:00
|
|
|
get_beacon_proposer_index(state, cache, state.slot)
|
2021-08-24 19:49:51 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func get_beacon_proposer_index*(state: ForkedHashedBeaconState,
|
|
|
|
cache: var StateCache, slot: Slot):
|
2023-01-11 12:29:21 +00:00
|
|
|
Opt[ValidatorIndex] =
|
2021-11-05 07:34:34 +00:00
|
|
|
withState(state):
|
2022-08-26 14:14:18 +00:00
|
|
|
get_beacon_proposer_index(forkyState.data, cache, slot)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2023-05-10 14:04:48 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0/specs/phase0/validator.md#aggregation-selection
|
2021-08-24 19:49:51 +00:00
|
|
|
func is_aggregator*(committee_len: uint64, slot_signature: ValidatorSig): bool =
|
2023-05-10 14:04:48 +00:00
|
|
|
let modulo = max(1'u64, committee_len div TARGET_AGGREGATORS_PER_COMMITTEE)
|
2021-08-24 19:49:51 +00:00
|
|
|
bytes_to_uint64(eth2digest(
|
|
|
|
slot_signature.toRaw()).data.toOpenArray(0, 7)) mod modulo == 0
|
2023-03-22 17:48:48 +00:00
|
|
|
|
|
|
|
# https://github.com/ethereum/builder-specs/pull/47
|
|
|
|
func livenessFailsafeInEffect*(
|
|
|
|
block_roots: array[Limit SLOTS_PER_HISTORICAL_ROOT, Eth2Digest],
|
|
|
|
slot: Slot): bool =
|
|
|
|
const
|
|
|
|
MAX_MISSING_CONTIGUOUS = 3
|
|
|
|
MAX_MISSING_WINDOW = 5
|
|
|
|
|
|
|
|
static: doAssert MAX_MISSING_WINDOW > MAX_MISSING_CONTIGUOUS
|
|
|
|
if slot <= MAX_MISSING_CONTIGUOUS:
|
|
|
|
# Cannot ever trigger and allows a bit of safe arithmetic. Furthermore
|
|
|
|
# there's notionally always a genesis block, which pushes the earliest
|
|
|
|
# possible failure out an additional slot.
|
|
|
|
return false
|
|
|
|
|
|
|
|
# Using this slightly convoluted construction to handle wraparound better;
|
|
|
|
# baseIndex + faultInspectionWindow can overflow array but only exactly by
|
|
|
|
# the required amount. Furthermore, go back one more slot to address using
|
|
|
|
# that it looks ahead rather than looks back and whether a block's missing
|
|
|
|
# requires seeing the previous block_root.
|
|
|
|
let
|
|
|
|
faultInspectionWindow = min(distinctBase(slot) - 1, SLOTS_PER_EPOCH)
|
|
|
|
baseIndex = (slot + SLOTS_PER_HISTORICAL_ROOT - faultInspectionWindow) mod
|
|
|
|
SLOTS_PER_HISTORICAL_ROOT
|
|
|
|
endIndex = baseIndex + faultInspectionWindow - 1
|
|
|
|
|
|
|
|
doAssert endIndex mod SLOTS_PER_HISTORICAL_ROOT ==
|
|
|
|
(slot - 1) mod SLOTS_PER_HISTORICAL_ROOT
|
|
|
|
|
|
|
|
var
|
|
|
|
totalMissing = 0
|
|
|
|
streakLen = 0
|
|
|
|
maxStreakLen = 0
|
|
|
|
|
|
|
|
for i in baseIndex .. endIndex:
|
|
|
|
# This look-forward means checking slot i for being missing uses i - 1
|
|
|
|
if block_roots[(i mod SLOTS_PER_HISTORICAL_ROOT).int] ==
|
|
|
|
block_roots[((i + 1) mod SLOTS_PER_HISTORICAL_ROOT).int]:
|
|
|
|
totalMissing += 1
|
|
|
|
if totalMissing > MAX_MISSING_WINDOW:
|
|
|
|
return true
|
|
|
|
|
|
|
|
streakLen += 1
|
|
|
|
if streakLen > maxStreakLen:
|
|
|
|
maxStreakLen = streakLen
|
|
|
|
if maxStreakLen > MAX_MISSING_CONTIGUOUS:
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
streakLen = 0
|
|
|
|
|
|
|
|
false
|