2024-02-29 13:24:08 +00:00
|
|
|
# beacon_chain
|
2024-01-06 14:26:56 +00:00
|
|
|
# Copyright (c) 2021-2024 Status Research & Development GmbH
|
2021-03-15 14:11:51 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2023-01-20 14:14:37 +00:00
|
|
|
{.push raises: [].}
|
2021-03-15 14:11:51 +00:00
|
|
|
|
|
|
|
import
|
2022-11-02 16:23:30 +00:00
|
|
|
chronicles,
|
2021-03-15 14:11:51 +00:00
|
|
|
./mocking/mock_deposits,
|
2021-06-11 17:51:46 +00:00
|
|
|
../beacon_chain/spec/[
|
2024-03-07 23:38:24 +00:00
|
|
|
forks, state_transition, state_transition_block]
|
|
|
|
|
|
|
|
from ".."/beacon_chain/bloomfilter import constructBloomFilter
|
2021-03-15 14:11:51 +00:00
|
|
|
|
2024-03-19 13:22:07 +00:00
|
|
|
func round_multiple_down(x: Gwei, n: Gwei): Gwei =
|
|
|
|
## Round the input to the previous multiple of "n"
|
|
|
|
x - x mod n
|
|
|
|
|
2021-11-18 12:02:43 +00:00
|
|
|
proc valid_deposit(state: var ForkyHashedBeaconState) =
|
2024-03-19 13:22:07 +00:00
|
|
|
const deposit_amount = MAX_EFFECTIVE_BALANCE.Gwei
|
2021-11-18 12:02:43 +00:00
|
|
|
let validator_index = state.data.validators.len
|
2021-03-15 14:11:51 +00:00
|
|
|
let deposit = mockUpdateStateForNewDeposit(
|
2021-11-18 12:02:43 +00:00
|
|
|
state.data,
|
2021-03-15 14:11:51 +00:00
|
|
|
uint64 validator_index,
|
|
|
|
deposit_amount,
|
|
|
|
flags = {}
|
|
|
|
)
|
|
|
|
|
2021-11-18 12:02:43 +00:00
|
|
|
let pre_val_count = state.data.validators.len
|
2021-03-15 14:11:51 +00:00
|
|
|
let pre_balance = if validator_index < pre_val_count:
|
2022-05-30 13:30:42 +00:00
|
|
|
state.data.balances.item(validator_index)
|
2021-03-15 14:11:51 +00:00
|
|
|
else:
|
2024-03-19 13:22:07 +00:00
|
|
|
0.Gwei
|
2024-03-07 23:38:24 +00:00
|
|
|
doAssert process_deposit(
|
|
|
|
defaultRuntimeConfig, state.data,
|
|
|
|
constructBloomFilter(state.data.validators.asSeq)[], deposit, {}).isOk
|
2021-11-18 12:02:43 +00:00
|
|
|
doAssert state.data.validators.len == pre_val_count + 1
|
|
|
|
doAssert state.data.balances.len == pre_val_count + 1
|
2022-05-30 13:30:42 +00:00
|
|
|
doAssert state.data.balances.item(validator_index) == pre_balance + deposit.data.amount
|
|
|
|
doAssert state.data.validators.item(validator_index).effective_balance ==
|
2021-03-15 14:11:51 +00:00
|
|
|
round_multiple_down(
|
2024-03-19 13:22:07 +00:00
|
|
|
min(
|
|
|
|
MAX_EFFECTIVE_BALANCE.Gwei,
|
|
|
|
state.data.balances.item(validator_index)),
|
|
|
|
EFFECTIVE_BALANCE_INCREMENT.Gwei
|
2021-03-15 14:11:51 +00:00
|
|
|
)
|
2021-11-18 12:02:43 +00:00
|
|
|
state.root = hash_tree_root(state.data)
|
2021-03-15 14:11:51 +00:00
|
|
|
|
2021-06-24 07:11:47 +00:00
|
|
|
proc getTestStates*(
|
2023-03-11 00:35:52 +00:00
|
|
|
initialState: ForkedHashedBeaconState, consensusFork: ConsensusFork):
|
2021-06-11 17:51:46 +00:00
|
|
|
seq[ref ForkedHashedBeaconState] =
|
2021-03-15 14:11:51 +00:00
|
|
|
# Randomly generated slot numbers, with a jump to around
|
|
|
|
# SLOTS_PER_HISTORICAL_ROOT to force wraparound of those
|
|
|
|
# slot-based mod/increment fields.
|
|
|
|
const stateEpochs = [
|
|
|
|
0, 1,
|
|
|
|
|
|
|
|
# Around minimal wraparound SLOTS_PER_HISTORICAL_ROOT wraparound
|
2021-09-27 14:22:58 +00:00
|
|
|
7, 8, 9,
|
2021-03-15 14:11:51 +00:00
|
|
|
|
2021-09-27 14:22:58 +00:00
|
|
|
# Unexceptional cases, with 2 and 3-long runs
|
|
|
|
39, 40, 114, 115, 116, 130, 131,
|
2021-03-15 14:11:51 +00:00
|
|
|
|
2021-09-27 14:22:58 +00:00
|
|
|
# Approaching and passing mainnet SLOTS_PER_HISTORICAL_ROOT wraparound
|
|
|
|
255, 256, 257]
|
2021-03-15 14:11:51 +00:00
|
|
|
|
|
|
|
var
|
|
|
|
tmpState = assignClone(initialState)
|
|
|
|
cache = StateCache()
|
2021-10-13 14:24:36 +00:00
|
|
|
info = ForkedEpochInfo()
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
cfg = defaultRuntimeConfig
|
|
|
|
|
2024-04-03 14:43:43 +00:00
|
|
|
static: doAssert high(ConsensusFork) == ConsensusFork.Electra
|
2023-03-11 00:35:52 +00:00
|
|
|
if consensusFork >= ConsensusFork.Altair:
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
cfg.ALTAIR_FORK_EPOCH = 1.Epoch
|
2023-03-11 00:35:52 +00:00
|
|
|
if consensusFork >= ConsensusFork.Bellatrix:
|
2022-12-14 23:12:29 +00:00
|
|
|
cfg.BELLATRIX_FORK_EPOCH = 2.Epoch
|
2023-03-11 00:35:52 +00:00
|
|
|
if consensusFork >= ConsensusFork.Capella:
|
2022-12-14 23:12:29 +00:00
|
|
|
cfg.CAPELLA_FORK_EPOCH = 3.Epoch
|
2023-03-11 00:35:52 +00:00
|
|
|
if consensusFork >= ConsensusFork.Deneb:
|
2023-02-15 14:44:09 +00:00
|
|
|
cfg.DENEB_FORK_EPOCH = 4.Epoch
|
2024-04-06 07:46:02 +00:00
|
|
|
if consensusFork >= ConsensusFork.Electra:
|
|
|
|
cfg.ELECTRA_FORK_EPOCH = 5.Epoch
|
2024-04-03 14:43:43 +00:00
|
|
|
|
2021-03-15 14:11:51 +00:00
|
|
|
for i, epoch in stateEpochs:
|
2022-01-11 10:01:54 +00:00
|
|
|
let slot = epoch.Epoch.start_slot
|
2021-06-11 17:51:46 +00:00
|
|
|
if getStateField(tmpState[], slot) < slot:
|
2022-01-17 11:19:58 +00:00
|
|
|
process_slots(
|
|
|
|
cfg, tmpState[], slot, cache, info, {}).expect("no failure")
|
2021-06-24 07:11:47 +00:00
|
|
|
|
2021-03-15 14:11:51 +00:00
|
|
|
if i mod 3 == 0:
|
2021-10-06 17:05:06 +00:00
|
|
|
withState(tmpState[]):
|
2022-09-10 06:12:07 +00:00
|
|
|
valid_deposit(forkyState)
|
2021-06-11 17:51:46 +00:00
|
|
|
doAssert getStateField(tmpState[], slot) == slot
|
2021-06-24 07:11:47 +00:00
|
|
|
|
2023-03-11 00:35:52 +00:00
|
|
|
if tmpState[].kind == consensusFork:
|
2024-04-03 14:43:43 +00:00
|
|
|
result.add assignClone(tmpState[])
|