eth2.0-specs/configs
Hsiao-Wei Wang 40fbcd3d59
Merge branch 'dev' into v082_backport
2019-08-12 00:58:20 +08:00
..
README.md update test generation code (work in progress), improve the simplicity of configuration in context of forks, and update docs 2019-07-25 23:13:33 +02:00
mainnet.yaml update test generation code (work in progress), improve the simplicity of configuration in context of forks, and update docs 2019-07-25 23:13:33 +02:00
minimal.yaml Merge branch 'dev' into v082_backport 2019-08-12 00:58:20 +08:00

README.md

Configs

This directory contains a set of constants presets used for testing, testnets, and mainnet.

A preset file contains all the constants known for its target. Later-fork constants can be ignored, e.g. ignore phase1 constants as a client that only supports phase 0 currently.

Forking

Configs are not replaced, but extended with forks. This is to support syncing from one state to the other over a fork boundary, without hot-swapping a config. Instead, for forks that introduce changes in a constant, the constant name is prefixed with a short abbreviation of the fork.

Over time, the need to sync an older state may be deprecated. In this case, the prefix on the new constant may be removed, and the old constant will keep a special name before completely being removed.

A previous iteration of forking made use of "timelines", but this collides with the definitions used in the spec (constants for special forking slots etc.), and was not integrated sufficiently in any of the spec tools or implementations. Instead, the config essentially doubles as fork definition now, changing the value for e.g. PHASE_1_GENESIS_SLOT changes the fork.

Another reason to prefer forking through constants is the ability to program a forking moment based on context, instead of being limited to a static slot number.

Format

Each preset is a key-value mapping.

Key: an UPPER_SNAKE_CASE (a.k.a. "macro case") formatted string, name of the constant.

Value can be either:

  • an unsigned integer number, can be up to 64 bits (incl.)
  • a hexadecimal string, prefixed with 0x

Presets may contain comments to describe the values.

See mainnet.yaml for a complete example.