Add Witti

This commit is contained in:
Hsiao-Wei Wang 2020-05-26 16:13:12 +08:00
parent 08eeed26ed
commit c59e89e47d
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4

View File

@ -9,9 +9,18 @@ MainnetSetting = BaseChainSetting(
GENESIS_FORK_VERSION=bytes.fromhex('00000000'), GENESIS_FORK_VERSION=bytes.fromhex('00000000'),
) )
# Eth2 spec v0.11.3 testnet
WittiSetting = BaseChainSetting(
GENESIS_FORK_VERSION=bytes.fromhex('00000113'),
)
MAINNET = 'mainnet' MAINNET = 'mainnet'
WITTI = 'witti'
ALL_CHAINS: Dict[str, BaseChainSetting] = { ALL_CHAINS: Dict[str, BaseChainSetting] = {
MAINNET: MainnetSetting, MAINNET: MainnetSetting,
WITTI: WittiSetting,
} }