2021-03-26 06:52:01 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * 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).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2020-06-12 16:43:20 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2020-02-07 07:13:38 +00:00
|
|
|
import
|
2021-08-18 18:57:58 +00:00
|
|
|
std/[os, strformat],
|
|
|
|
chronicles,
|
2021-11-18 12:02:43 +00:00
|
|
|
./spec/[beaconstate, eth2_ssz_serialization, eth2_merkleization, forks],
|
|
|
|
./spec/datatypes/[phase0, altair, merge]
|
2020-02-07 07:13:38 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
export
|
2021-11-18 12:02:43 +00:00
|
|
|
beaconstate, eth2_ssz_serialization, eth2_merkleization, forks
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2020-06-12 16:43:20 +00:00
|
|
|
# Dump errors are generally not fatal where used currently - the code calling
|
|
|
|
# these functions, like most code, is not exception safe
|
|
|
|
template logErrors(body: untyped) =
|
|
|
|
try:
|
|
|
|
body
|
|
|
|
except CatchableError as err:
|
|
|
|
notice "Failed to write SSZ", dir, msg = err.msg
|
|
|
|
|
2020-02-07 07:13:38 +00:00
|
|
|
proc dump*(dir: string, v: AttestationData, validator: ValidatorPubKey) =
|
2020-06-12 16:43:20 +00:00
|
|
|
logErrors:
|
|
|
|
SSZ.saveFile(dir / &"att-{v.slot}-{v.index}-{shortLog(validator)}.ssz", v)
|
2020-02-07 07:13:38 +00:00
|
|
|
|
2021-11-10 11:39:08 +00:00
|
|
|
proc dump*(dir: string, v: ForkyTrustedSignedBeaconBlock) =
|
2020-06-12 16:43:20 +00:00
|
|
|
logErrors:
|
2020-07-16 13:16:51 +00:00
|
|
|
SSZ.saveFile(dir / &"block-{v.message.slot}-{shortLog(v.root)}.ssz", v)
|
2021-07-15 19:01:07 +00:00
|
|
|
|
2021-11-10 11:39:08 +00:00
|
|
|
proc dump*(dir: string, v: ForkySignedBeaconBlock) =
|
2021-09-27 14:22:58 +00:00
|
|
|
logErrors:
|
|
|
|
SSZ.saveFile(dir / &"block-{v.message.slot}-{shortLog(v.root)}.ssz", v)
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
proc dump*(dir: string, v: ForkyHashedBeaconState) =
|
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
|
|
|
mixin saveFile
|
2020-06-12 16:43:20 +00:00
|
|
|
logErrors:
|
|
|
|
SSZ.saveFile(
|
2021-11-18 12:02:43 +00:00
|
|
|
dir / &"state-{v.data.slot}-{shortLog(v.latest_block_root)}-{shortLog(v.root)}.ssz",
|
2020-06-12 16:43:20 +00:00
|
|
|
v.data)
|
2021-07-19 11:58:30 +00:00
|
|
|
|
|
|
|
proc dump*(dir: string, v: SyncCommitteeMessage, validator: ValidatorPubKey) =
|
|
|
|
logErrors:
|
|
|
|
SSZ.saveFile(dir / &"sync-committee-msg-{v.slot}-{shortLog(validator)}.ssz", v)
|