gnattishness 691c25ab38
Update config_helper requirements.
Fixes build errors for python 3.8.
2019-10-24 09:32:57 +11:00
..
2019-10-24 09:32:57 +11:00

ETH 2.0 config helpers

preset_loader: A util to load constants-presets with. See Constants-presets documentation.

Usage:

configs_path = 'configs/'

...

import preset_loader
from eth2spec.phase0 import spec
my_presets = preset_loader.load_presets(configs_path, 'mainnet')
spec.apply_constants_preset(my_presets)

WARNING: this overwrites globals, make sure to prevent accidental collisions with other usage of the same imported specs package.