2021-06-11 17:51:46 +00:00
|
|
|
# beacon_chain
|
2023-01-09 22:44:44 +00:00
|
|
|
# Copyright (c) 2021-2023 Status Research & Development GmbH
|
2021-06-11 17:51:46 +00:00
|
|
|
# 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.
|
|
|
|
|
2023-01-20 14:14:37 +00:00
|
|
|
{.push raises: [].}
|
2021-06-11 17:51:46 +00:00
|
|
|
|
|
|
|
import
|
2023-01-28 19:53:41 +00:00
|
|
|
std/macros,
|
2022-01-05 14:24:15 +00:00
|
|
|
stew/assign2,
|
2023-01-21 06:34:04 +00:00
|
|
|
stew/results,
|
2021-06-11 17:51:46 +00:00
|
|
|
chronicles,
|
|
|
|
../extras,
|
2023-01-12 17:11:38 +00:00
|
|
|
"."/[
|
|
|
|
block_id, eth2_merkleization, eth2_ssz_serialization,
|
|
|
|
forks_light_client, presets],
|
2023-02-20 08:45:49 +00:00
|
|
|
./datatypes/[phase0, altair, bellatrix, capella, deneb],
|
2023-02-21 13:21:38 +00:00
|
|
|
./mev/bellatrix_mev, ./mev/capella_mev
|
2021-06-11 17:51:46 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
export
|
2023-02-20 08:45:49 +00:00
|
|
|
extras, block_id, phase0, altair, bellatrix, capella, deneb,
|
2023-01-14 21:19:50 +00:00
|
|
|
eth2_merkleization, eth2_ssz_serialization, forks_light_client,
|
2023-02-21 13:21:38 +00:00
|
|
|
presets, bellatrix_mev, capella_mev
|
2021-11-05 07:34:34 +00:00
|
|
|
|
|
|
|
# This file contains helpers for dealing with forks - we have two ways we can
|
|
|
|
# deal with forks:
|
|
|
|
# * generics - this means using the static typing and differentiating forks
|
|
|
|
# at compile time - this is preferred in fork-specific code where the fork
|
|
|
|
# is known up-front, for example spec functions.
|
|
|
|
# * variants - this means using a variant object and determining the fork at
|
|
|
|
# runtime - this carries the obvious risk and complexity of dealing with
|
|
|
|
# runtime checking, but is of course needed for external data that may be
|
|
|
|
# of any fork kind.
|
|
|
|
#
|
|
|
|
# For generics, we define `Forky*` type classes that cover "similar" objects
|
|
|
|
# across forks - for variants, they're called `Forked*` instead.
|
|
|
|
# See withXxx and `init` for convenient ways of moving between these two worlds.
|
|
|
|
# A clever programmer would use templates, macros and dark magic to create all
|
|
|
|
# these types and converters :)
|
2021-08-12 13:08:20 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
type
|
2023-01-28 19:53:41 +00:00
|
|
|
ConsensusFork* {.pure.} = enum
|
2021-10-18 16:37:27 +00:00
|
|
|
Phase0,
|
|
|
|
Altair,
|
2022-11-02 16:23:30 +00:00
|
|
|
Bellatrix,
|
2022-12-07 16:47:23 +00:00
|
|
|
Capella,
|
2023-03-04 13:35:39 +00:00
|
|
|
Deneb
|
2021-06-11 17:51:46 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkyBeaconState* =
|
|
|
|
phase0.BeaconState |
|
|
|
|
altair.BeaconState |
|
2022-10-27 06:29:24 +00:00
|
|
|
bellatrix.BeaconState |
|
2022-12-06 12:40:13 +00:00
|
|
|
capella.BeaconState |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.BeaconState
|
2021-11-05 07:34:34 +00:00
|
|
|
|
|
|
|
ForkyHashedBeaconState* =
|
|
|
|
phase0.HashedBeaconState |
|
|
|
|
altair.HashedBeaconState |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.HashedBeaconState |
|
2022-12-07 16:47:23 +00:00
|
|
|
capella.HashedBeaconState |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.HashedBeaconState
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
ForkedHashedBeaconState* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.HashedBeaconState
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.HashedBeaconState
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.HashedBeaconState
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.HashedBeaconState
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.HashedBeaconState
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2022-12-20 19:00:56 +00:00
|
|
|
ForkyExecutionPayload* =
|
|
|
|
bellatrix.ExecutionPayload |
|
|
|
|
capella.ExecutionPayload |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.ExecutionPayload
|
2022-12-20 19:00:56 +00:00
|
|
|
|
2023-01-28 19:53:41 +00:00
|
|
|
ForkyExecutionPayloadHeader* =
|
|
|
|
bellatrix.ExecutionPayloadHeader |
|
|
|
|
capella.ExecutionPayloadHeader |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.ExecutionPayloadHeader
|
2023-01-28 19:53:41 +00:00
|
|
|
|
2022-02-11 15:58:33 +00:00
|
|
|
ForkyBeaconBlockBody* =
|
|
|
|
phase0.BeaconBlockBody |
|
|
|
|
altair.BeaconBlockBody |
|
2022-11-07 18:37:48 +00:00
|
|
|
bellatrix.BeaconBlockBody |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.BeaconBlockBody |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.BeaconBlockBody
|
2022-02-11 15:58:33 +00:00
|
|
|
|
|
|
|
ForkySigVerifiedBeaconBlockBody* =
|
|
|
|
phase0.SigVerifiedBeaconBlockBody |
|
|
|
|
altair.SigVerifiedBeaconBlockBody |
|
2022-11-07 18:37:48 +00:00
|
|
|
bellatrix.SigVerifiedBeaconBlockBody |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.SigVerifiedBeaconBlockBody |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.SigVerifiedBeaconBlockBody
|
2022-02-11 15:58:33 +00:00
|
|
|
|
|
|
|
ForkyTrustedBeaconBlockBody* =
|
|
|
|
phase0.TrustedBeaconBlockBody |
|
|
|
|
altair.TrustedBeaconBlockBody |
|
2022-11-07 18:37:48 +00:00
|
|
|
bellatrix.TrustedBeaconBlockBody |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.TrustedBeaconBlockBody |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.TrustedBeaconBlockBody
|
2022-02-11 15:58:33 +00:00
|
|
|
|
|
|
|
SomeForkyBeaconBlockBody* =
|
|
|
|
ForkyBeaconBlockBody |
|
|
|
|
ForkySigVerifiedBeaconBlockBody |
|
|
|
|
ForkyTrustedBeaconBlockBody
|
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkyBeaconBlock* =
|
|
|
|
phase0.BeaconBlock |
|
|
|
|
altair.BeaconBlock |
|
2022-10-27 06:29:24 +00:00
|
|
|
bellatrix.BeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.BeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.BeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-01-17 11:19:58 +00:00
|
|
|
ForkySigVerifiedBeaconBlock* =
|
|
|
|
phase0.SigVerifiedBeaconBlock |
|
|
|
|
altair.SigVerifiedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.SigVerifiedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.SigVerifiedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.SigVerifiedBeaconBlock
|
2022-01-17 11:19:58 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkyTrustedBeaconBlock* =
|
|
|
|
phase0.TrustedBeaconBlock |
|
|
|
|
altair.TrustedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.TrustedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.TrustedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.TrustedBeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-01-30 16:51:04 +00:00
|
|
|
SomeForkyBeaconBlock* =
|
|
|
|
ForkyBeaconBlock |
|
|
|
|
ForkySigVerifiedBeaconBlock |
|
|
|
|
ForkyTrustedBeaconBlock
|
|
|
|
|
2023-03-05 01:40:21 +00:00
|
|
|
ForkyExecutionPayloadForSigning* =
|
|
|
|
bellatrix.ExecutionPayloadForSigning |
|
|
|
|
capella.ExecutionPayloadForSigning |
|
|
|
|
deneb.ExecutionPayloadForSigning
|
|
|
|
|
2021-08-27 09:00:06 +00:00
|
|
|
ForkedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.BeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.BeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.BeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.BeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.BeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-08-01 06:41:47 +00:00
|
|
|
Web3SignerForkedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.BeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.BeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: BeaconBlockHeader
|
|
|
|
of ConsensusFork.Capella: capellaData*: BeaconBlockHeader
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: BeaconBlockHeader
|
2022-05-17 16:55:03 +00:00
|
|
|
|
2022-10-31 17:39:03 +00:00
|
|
|
ForkedBlindedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.BeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.BeaconBlock
|
2023-02-21 13:21:38 +00:00
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix_mev.BlindedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella_mev.BlindedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: capella_mev.BlindedBeaconBlock
|
2022-10-31 17:39:03 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkedTrustedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.TrustedBeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.TrustedBeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.TrustedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.TrustedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.TrustedBeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
|
|
|
ForkySignedBeaconBlock* =
|
|
|
|
phase0.SignedBeaconBlock |
|
|
|
|
altair.SignedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.SignedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.SignedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.SignedBeaconBlock
|
2021-08-27 09:00:06 +00:00
|
|
|
|
2021-07-07 09:09:47 +00:00
|
|
|
ForkedSignedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.SignedBeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.SignedBeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.SignedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.SignedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.SignedBeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-11-24 09:14:05 +00:00
|
|
|
ForkySignedBlindedBeaconBlock* =
|
|
|
|
phase0.SignedBeaconBlock |
|
|
|
|
altair.SignedBeaconBlock |
|
2023-02-21 13:21:38 +00:00
|
|
|
bellatrix_mev.SignedBlindedBeaconBlock |
|
|
|
|
capella_mev.SignedBlindedBeaconBlock
|
2022-11-24 09:14:05 +00:00
|
|
|
|
|
|
|
ForkedSignedBlindedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.SignedBeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.SignedBeaconBlock
|
2023-02-21 13:21:38 +00:00
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix_mev.SignedBlindedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella_mev.SignedBlindedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: capella_mev.SignedBlindedBeaconBlock
|
2022-11-24 09:14:05 +00:00
|
|
|
|
2022-01-11 10:01:54 +00:00
|
|
|
ForkySigVerifiedSignedBeaconBlock* =
|
|
|
|
phase0.SigVerifiedSignedBeaconBlock |
|
|
|
|
altair.SigVerifiedSignedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.SigVerifiedSignedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.SigVerifiedSignedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.SigVerifiedSignedBeaconBlock
|
2022-01-11 10:01:54 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
ForkyMsgTrustedSignedBeaconBlock* =
|
|
|
|
phase0.MsgTrustedSignedBeaconBlock |
|
|
|
|
altair.MsgTrustedSignedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.MsgTrustedSignedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.MsgTrustedSignedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.MsgTrustedSignedBeaconBlock
|
2022-06-10 14:16:37 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkyTrustedSignedBeaconBlock* =
|
|
|
|
phase0.TrustedSignedBeaconBlock |
|
|
|
|
altair.TrustedSignedBeaconBlock |
|
2022-11-02 16:23:30 +00:00
|
|
|
bellatrix.TrustedSignedBeaconBlock |
|
2022-12-05 16:29:09 +00:00
|
|
|
capella.TrustedSignedBeaconBlock |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.TrustedSignedBeaconBlock
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
ForkedMsgTrustedSignedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.MsgTrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.MsgTrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.MsgTrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.MsgTrustedSignedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.MsgTrustedSignedBeaconBlock
|
2022-06-10 14:16:37 +00:00
|
|
|
|
2021-07-07 09:09:47 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock* = object
|
2023-01-28 19:53:41 +00:00
|
|
|
case kind*: ConsensusFork
|
|
|
|
of ConsensusFork.Phase0: phase0Data*: phase0.TrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Altair: altairData*: altair.TrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Bellatrix: bellatrixData*: bellatrix.TrustedSignedBeaconBlock
|
|
|
|
of ConsensusFork.Capella: capellaData*: capella.TrustedSignedBeaconBlock
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: denebData*: deneb.TrustedSignedBeaconBlock
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2022-01-11 10:01:54 +00:00
|
|
|
SomeForkySignedBeaconBlock* =
|
|
|
|
ForkySignedBeaconBlock |
|
|
|
|
ForkySigVerifiedSignedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
ForkyMsgTrustedSignedBeaconBlock |
|
2022-01-11 10:01:54 +00:00
|
|
|
ForkyTrustedSignedBeaconBlock
|
|
|
|
|
2021-10-13 14:24:36 +00:00
|
|
|
EpochInfoFork* {.pure.} = enum
|
|
|
|
Phase0
|
|
|
|
Altair
|
|
|
|
|
|
|
|
ForkedEpochInfo* = object
|
|
|
|
case kind*: EpochInfoFork
|
2021-11-05 07:34:34 +00:00
|
|
|
of EpochInfoFork.Phase0: phase0Data*: phase0.EpochInfo
|
|
|
|
of EpochInfoFork.Altair: altairData*: altair.EpochInfo
|
2021-10-13 14:24:36 +00:00
|
|
|
|
|
|
|
ForkyEpochInfo* = phase0.EpochInfo | altair.EpochInfo
|
|
|
|
|
2021-10-07 13:19:47 +00:00
|
|
|
ForkDigests* = object
|
2022-01-05 14:24:15 +00:00
|
|
|
phase0*: ForkDigest
|
|
|
|
altair*: ForkDigest
|
|
|
|
bellatrix*: ForkDigest
|
2022-06-03 14:42:40 +00:00
|
|
|
capella*: ForkDigest
|
2023-03-10 17:13:40 +00:00
|
|
|
deneb*: ForkDigest
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2023-01-28 19:53:41 +00:00
|
|
|
macro getSymbolFromForkModule(fork: static ConsensusFork,
|
|
|
|
symbolName: static string): untyped =
|
|
|
|
let moduleName = case fork
|
|
|
|
of ConsensusFork.Phase0: "phase0"
|
|
|
|
of ConsensusFork.Altair: "altair"
|
|
|
|
of ConsensusFork.Bellatrix: "bellatrix"
|
|
|
|
of ConsensusFork.Capella: "capella"
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb: "deneb"
|
2023-01-28 19:53:41 +00:00
|
|
|
newDotExpr(ident moduleName, ident symbolName)
|
|
|
|
|
|
|
|
template BeaconStateType*(fork: static ConsensusFork): auto =
|
|
|
|
getSymbolFromForkModule(fork, "BeaconState")
|
|
|
|
|
|
|
|
template BeaconBlockType*(fork: static ConsensusFork): auto =
|
|
|
|
getSymbolFromForkModule(fork, "BeaconBlock")
|
|
|
|
|
|
|
|
template BeaconBlockBodyType*(fork: static ConsensusFork): auto =
|
|
|
|
getSymbolFromForkModule(fork, "BeaconBlockBody")
|
2023-01-14 21:19:50 +00:00
|
|
|
|
2023-03-11 20:11:33 +00:00
|
|
|
template ExecutionPayloadForSigning*(kind: static ConsensusFork): auto =
|
|
|
|
when kind == ConsensusFork.Deneb:
|
|
|
|
typedesc[deneb.ExecutionPayloadForSigning]
|
|
|
|
elif kind == ConsensusFork.Capella:
|
|
|
|
typedesc[capella.ExecutionPayloadForSigning]
|
|
|
|
elif kind == ConsensusFork.Bellatrix:
|
|
|
|
typedesc[bellatrix.ExecutionPayloadForSigning]
|
|
|
|
else:
|
|
|
|
static: raiseAssert "Unreachable"
|
|
|
|
|
2023-03-11 14:39:29 +00:00
|
|
|
template withConsensusFork*(
|
2023-01-28 19:53:41 +00:00
|
|
|
x: ConsensusFork, body: untyped): untyped =
|
2023-01-14 21:19:50 +00:00
|
|
|
case x
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Deneb
|
2023-01-14 21:19:50 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Capella
|
2023-01-14 21:19:50 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Bellatrix
|
2023-01-14 21:19:50 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Altair
|
2023-01-14 21:19:50 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Phase0
|
2023-01-14 21:19:50 +00:00
|
|
|
body
|
|
|
|
|
2022-12-13 15:58:59 +00:00
|
|
|
# TODO when https://github.com/nim-lang/Nim/issues/21086 fixed, use return type
|
|
|
|
# `ref T`
|
|
|
|
func new*(T: type ForkedHashedBeaconState, data: phase0.BeaconState):
|
|
|
|
ref ForkedHashedBeaconState =
|
2023-01-28 19:53:41 +00:00
|
|
|
(ref T)(kind: ConsensusFork.Phase0, phase0Data: phase0.HashedBeaconState(
|
2022-12-13 15:58:59 +00:00
|
|
|
data: data, root: hash_tree_root(data)))
|
|
|
|
func new*(T: type ForkedHashedBeaconState, data: altair.BeaconState):
|
|
|
|
ref ForkedHashedBeaconState =
|
2023-01-28 19:53:41 +00:00
|
|
|
(ref T)(kind: ConsensusFork.Altair, altairData: altair.HashedBeaconState(
|
2022-12-13 15:58:59 +00:00
|
|
|
data: data, root: hash_tree_root(data)))
|
|
|
|
func new*(T: type ForkedHashedBeaconState, data: bellatrix.BeaconState):
|
|
|
|
ref ForkedHashedBeaconState =
|
2023-01-28 19:53:41 +00:00
|
|
|
(ref T)(kind: ConsensusFork.Bellatrix, bellatrixData: bellatrix.HashedBeaconState(
|
2022-12-13 15:58:59 +00:00
|
|
|
data: data, root: hash_tree_root(data)))
|
|
|
|
func new*(T: type ForkedHashedBeaconState, data: capella.BeaconState):
|
|
|
|
ref ForkedHashedBeaconState =
|
2023-01-28 19:53:41 +00:00
|
|
|
(ref T)(kind: ConsensusFork.Capella, capellaData: capella.HashedBeaconState(
|
2022-12-13 15:58:59 +00:00
|
|
|
data: data, root: hash_tree_root(data)))
|
2023-02-20 08:45:49 +00:00
|
|
|
func new*(T: type ForkedHashedBeaconState, data: deneb.BeaconState):
|
2022-12-13 15:58:59 +00:00
|
|
|
ref ForkedHashedBeaconState =
|
2023-03-04 22:23:52 +00:00
|
|
|
(ref T)(kind: ConsensusFork.Deneb, denebData: deneb.HashedBeaconState(
|
2022-12-13 15:58:59 +00:00
|
|
|
data: data, root: hash_tree_root(data)))
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2021-08-27 09:00:06 +00:00
|
|
|
template init*(T: type ForkedBeaconBlock, blck: phase0.BeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Phase0, phase0Data: blck)
|
2021-08-27 09:00:06 +00:00
|
|
|
template init*(T: type ForkedBeaconBlock, blck: altair.BeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Altair, altairData: blck)
|
2022-01-06 11:25:35 +00:00
|
|
|
template init*(T: type ForkedBeaconBlock, blck: bellatrix.BeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Bellatrix, bellatrixData: blck)
|
2022-11-24 07:53:04 +00:00
|
|
|
template init*(T: type ForkedBeaconBlock, blck: capella.BeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Capella, capellaData: blck)
|
2023-02-20 08:45:49 +00:00
|
|
|
template init*(T: type ForkedBeaconBlock, blck: deneb.BeaconBlock): T =
|
2023-03-04 22:23:52 +00:00
|
|
|
T(kind: ConsensusFork.Deneb, denebData: blck)
|
2021-08-27 09:00:06 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
template init*(T: type ForkedTrustedBeaconBlock, blck: phase0.TrustedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Phase0, phase0Data: blck)
|
2021-11-05 07:34:34 +00:00
|
|
|
template init*(T: type ForkedTrustedBeaconBlock, blck: altair.TrustedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Altair, altairData: blck)
|
2022-01-06 11:25:35 +00:00
|
|
|
template init*(T: type ForkedTrustedBeaconBlock, blck: bellatrix.TrustedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Bellatrix, bellatrixData: blck)
|
2022-11-24 07:53:04 +00:00
|
|
|
template init*(T: type ForkedTrustedBeaconBlock, blck: capella.TrustedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Capella, capellaData: blck)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2021-07-14 12:18:52 +00:00
|
|
|
template init*(T: type ForkedSignedBeaconBlock, blck: phase0.SignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Phase0, phase0Data: blck)
|
2021-07-14 12:18:52 +00:00
|
|
|
template init*(T: type ForkedSignedBeaconBlock, blck: altair.SignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Altair, altairData: blck)
|
2022-01-06 11:25:35 +00:00
|
|
|
template init*(T: type ForkedSignedBeaconBlock, blck: bellatrix.SignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Bellatrix, bellatrixData: blck)
|
2022-11-02 16:23:30 +00:00
|
|
|
template init*(T: type ForkedSignedBeaconBlock, blck: capella.SignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Capella, capellaData: blck)
|
2023-02-20 08:45:49 +00:00
|
|
|
template init*(T: type ForkedSignedBeaconBlock, blck: deneb.SignedBeaconBlock): T =
|
2023-03-04 22:23:52 +00:00
|
|
|
T(kind: ConsensusFork.Deneb, denebData: blck)
|
2021-07-14 12:18:52 +00:00
|
|
|
|
2022-11-24 09:14:05 +00:00
|
|
|
func init*(T: type ForkedSignedBeaconBlock, forked: ForkedBeaconBlock,
|
|
|
|
blockRoot: Eth2Digest, signature: ValidatorSig): T =
|
2021-08-27 09:00:06 +00:00
|
|
|
case forked.kind
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
|
|
|
T(kind: ConsensusFork.Phase0,
|
2021-10-18 16:37:27 +00:00
|
|
|
phase0Data: phase0.SignedBeaconBlock(message: forked.phase0Data,
|
2021-11-05 07:34:34 +00:00
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
|
|
|
T(kind: ConsensusFork.Altair,
|
2021-10-18 16:37:27 +00:00
|
|
|
altairData: altair.SignedBeaconBlock(message: forked.altairData,
|
2021-11-05 07:34:34 +00:00
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
|
|
|
T(kind: ConsensusFork.Bellatrix,
|
2022-01-24 16:23:13 +00:00
|
|
|
bellatrixData: bellatrix.SignedBeaconBlock(message: forked.bellatrixData,
|
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
|
|
|
T(kind: ConsensusFork.Capella,
|
2022-11-02 16:23:30 +00:00
|
|
|
capellaData: capella.SignedBeaconBlock(message: forked.capellaData,
|
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
|
|
|
T(kind: ConsensusFork.Deneb,
|
2023-03-04 22:23:52 +00:00
|
|
|
denebData: deneb.SignedBeaconBlock(message: forked.denebData,
|
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2021-08-27 09:00:06 +00:00
|
|
|
|
2022-11-24 09:14:05 +00:00
|
|
|
func init*(T: type ForkedSignedBlindedBeaconBlock,
|
|
|
|
forked: ForkedBlindedBeaconBlock, blockRoot: Eth2Digest,
|
|
|
|
signature: ValidatorSig): T =
|
|
|
|
case forked.kind
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
|
|
|
T(kind: ConsensusFork.Phase0,
|
2022-11-24 09:14:05 +00:00
|
|
|
phase0Data: phase0.SignedBeaconBlock(message: forked.phase0Data,
|
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
|
|
|
T(kind: ConsensusFork.Altair,
|
2022-11-24 09:14:05 +00:00
|
|
|
altairData: altair.SignedBeaconBlock(message: forked.altairData,
|
|
|
|
root: blockRoot,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
|
|
|
T(kind: ConsensusFork.Bellatrix,
|
2023-02-21 13:21:38 +00:00
|
|
|
bellatrixData: bellatrix_mev.SignedBlindedBeaconBlock(message: forked.bellatrixData,
|
|
|
|
signature: signature))
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
|
|
|
T(kind: ConsensusFork.Capella,
|
2023-02-21 13:21:38 +00:00
|
|
|
capellaData: capella_mev.SignedBlindedBeaconBlock(message: forked.capellaData,
|
|
|
|
signature: signature))
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-02-23 10:37:45 +00:00
|
|
|
discard $denebImplementationMissing & "forks.nim:init(T: type ForkedSignedBlindedBeaconBlock)"
|
2023-03-04 13:35:39 +00:00
|
|
|
T(kind: ConsensusFork.Deneb,
|
2023-03-04 22:23:52 +00:00
|
|
|
denebData: capella_mev.SignedBlindedBeaconBlock(message: forked.denebData,
|
|
|
|
signature: signature))
|
2022-11-24 09:14:05 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template init*(T: type ForkedMsgTrustedSignedBeaconBlock, blck: phase0.MsgTrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Phase0, phase0Data: blck)
|
2022-06-10 14:16:37 +00:00
|
|
|
template init*(T: type ForkedMsgTrustedSignedBeaconBlock, blck: altair.MsgTrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Altair, altairData: blck)
|
2022-06-10 14:16:37 +00:00
|
|
|
template init*(T: type ForkedMsgTrustedSignedBeaconBlock, blck: bellatrix.MsgTrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Bellatrix, bellatrixData: blck)
|
2022-11-02 16:23:30 +00:00
|
|
|
template init*(T: type ForkedMsgTrustedSignedBeaconBlock, blck: capella.MsgTrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Capella, capellaData: blck)
|
2023-02-20 08:45:49 +00:00
|
|
|
template init*(T: type ForkedMsgTrustedSignedBeaconBlock, blck: deneb.MsgTrustedSignedBeaconBlock): T =
|
2023-03-11 00:28:19 +00:00
|
|
|
T(kind: ConsensusFork.Deneb, denebData: blck)
|
2022-12-05 16:29:09 +00:00
|
|
|
|
2021-07-14 12:18:52 +00:00
|
|
|
template init*(T: type ForkedTrustedSignedBeaconBlock, blck: phase0.TrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Phase0, phase0Data: blck)
|
2021-07-14 12:18:52 +00:00
|
|
|
template init*(T: type ForkedTrustedSignedBeaconBlock, blck: altair.TrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Altair, altairData: blck)
|
2022-01-06 11:25:35 +00:00
|
|
|
template init*(T: type ForkedTrustedSignedBeaconBlock, blck: bellatrix.TrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Bellatrix, bellatrixData: blck)
|
2022-11-02 16:23:30 +00:00
|
|
|
template init*(T: type ForkedTrustedSignedBeaconBlock, blck: capella.TrustedSignedBeaconBlock): T =
|
2023-01-28 19:53:41 +00:00
|
|
|
T(kind: ConsensusFork.Capella, capellaData: blck)
|
2023-02-20 08:45:49 +00:00
|
|
|
template init*(T: type ForkedTrustedSignedBeaconBlock, blck: deneb.TrustedSignedBeaconBlock): T =
|
2023-03-04 22:23:52 +00:00
|
|
|
T(kind: ConsensusFork.Deneb, denebData: blck)
|
2021-07-14 12:18:52 +00:00
|
|
|
|
2023-01-28 19:53:41 +00:00
|
|
|
template toString*(kind: ConsensusFork): string =
|
2022-06-20 05:53:39 +00:00
|
|
|
case kind
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2022-06-20 05:53:39 +00:00
|
|
|
"phase0"
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2022-06-20 05:53:39 +00:00
|
|
|
"altair"
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2022-06-20 05:53:39 +00:00
|
|
|
"bellatrix"
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2022-11-02 16:23:30 +00:00
|
|
|
"capella"
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
|
|
|
"deneb"
|
2022-06-20 05:53:39 +00:00
|
|
|
|
2022-02-28 12:58:34 +00:00
|
|
|
template toFork*[T:
|
2023-01-28 19:53:41 +00:00
|
|
|
phase0.BeaconState |
|
|
|
|
phase0.HashedBeaconState |
|
2022-07-04 20:35:33 +00:00
|
|
|
phase0.BeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
phase0.SignedBeaconBlock |
|
2022-07-04 20:35:33 +00:00
|
|
|
phase0.TrustedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
phase0.SigVerifiedSignedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
phase0.MsgTrustedSignedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
phase0.TrustedSignedBeaconBlock](
|
2023-01-28 19:53:41 +00:00
|
|
|
t: type T): ConsensusFork =
|
|
|
|
ConsensusFork.Phase0
|
2022-12-07 16:47:23 +00:00
|
|
|
|
2022-02-28 12:58:34 +00:00
|
|
|
template toFork*[T:
|
2023-01-28 19:53:41 +00:00
|
|
|
altair.BeaconState |
|
|
|
|
altair.HashedBeaconState |
|
2022-07-04 20:35:33 +00:00
|
|
|
altair.BeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
altair.SignedBeaconBlock |
|
2022-07-04 20:35:33 +00:00
|
|
|
altair.TrustedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
altair.SigVerifiedSignedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
altair.MsgTrustedSignedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
altair.TrustedSignedBeaconBlock](
|
2023-01-28 19:53:41 +00:00
|
|
|
t: type T): ConsensusFork =
|
|
|
|
ConsensusFork.Altair
|
2022-12-07 16:47:23 +00:00
|
|
|
|
2022-02-28 12:58:34 +00:00
|
|
|
template toFork*[T:
|
2023-01-28 19:53:41 +00:00
|
|
|
bellatrix.BeaconState |
|
|
|
|
bellatrix.HashedBeaconState |
|
2022-12-20 19:00:56 +00:00
|
|
|
bellatrix.ExecutionPayload |
|
2023-03-05 01:40:21 +00:00
|
|
|
bellatrix.ExecutionPayloadForSigning |
|
2023-01-28 19:53:41 +00:00
|
|
|
bellatrix.ExecutionPayloadHeader |
|
2022-07-04 20:35:33 +00:00
|
|
|
bellatrix.BeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
bellatrix.SignedBeaconBlock |
|
2022-07-04 20:35:33 +00:00
|
|
|
bellatrix.TrustedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
bellatrix.SigVerifiedSignedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
bellatrix.MsgTrustedSignedBeaconBlock |
|
2022-02-28 12:58:34 +00:00
|
|
|
bellatrix.TrustedSignedBeaconBlock](
|
2023-01-28 19:53:41 +00:00
|
|
|
t: type T): ConsensusFork =
|
|
|
|
ConsensusFork.Bellatrix
|
2022-12-07 16:47:23 +00:00
|
|
|
|
2022-11-02 16:23:30 +00:00
|
|
|
template toFork*[T:
|
2023-01-28 19:53:41 +00:00
|
|
|
capella.BeaconState |
|
|
|
|
capella.HashedBeaconState |
|
2022-12-20 19:00:56 +00:00
|
|
|
capella.ExecutionPayload |
|
2023-03-05 01:40:21 +00:00
|
|
|
capella.ExecutionPayloadForSigning |
|
2023-01-28 19:53:41 +00:00
|
|
|
capella.ExecutionPayloadHeader |
|
2022-11-02 16:23:30 +00:00
|
|
|
capella.BeaconBlock |
|
|
|
|
capella.SignedBeaconBlock |
|
|
|
|
capella.TrustedBeaconBlock |
|
|
|
|
capella.SigVerifiedSignedBeaconBlock |
|
|
|
|
capella.MsgTrustedSignedBeaconBlock |
|
|
|
|
capella.TrustedSignedBeaconBlock](
|
2023-01-28 19:53:41 +00:00
|
|
|
t: type T): ConsensusFork =
|
|
|
|
ConsensusFork.Capella
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-12-05 16:29:09 +00:00
|
|
|
template toFork*[T:
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.BeaconState |
|
|
|
|
deneb.HashedBeaconState |
|
|
|
|
deneb.ExecutionPayload |
|
2023-03-05 01:40:21 +00:00
|
|
|
deneb.ExecutionPayloadForSigning |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.ExecutionPayloadHeader |
|
|
|
|
deneb.BeaconBlock |
|
|
|
|
deneb.SignedBeaconBlock |
|
|
|
|
deneb.TrustedBeaconBlock |
|
|
|
|
deneb.SigVerifiedSignedBeaconBlock |
|
|
|
|
deneb.MsgTrustedSignedBeaconBlock |
|
|
|
|
deneb.TrustedSignedBeaconBlock](
|
2023-01-28 19:53:41 +00:00
|
|
|
t: type T): ConsensusFork =
|
2023-03-04 13:35:39 +00:00
|
|
|
ConsensusFork.Deneb
|
2023-01-18 14:32:57 +00:00
|
|
|
|
2021-10-13 14:24:36 +00:00
|
|
|
template init*(T: type ForkedEpochInfo, info: phase0.EpochInfo): T =
|
2021-10-18 16:37:27 +00:00
|
|
|
T(kind: EpochInfoFork.Phase0, phase0Data: info)
|
2021-10-13 14:24:36 +00:00
|
|
|
template init*(T: type ForkedEpochInfo, info: altair.EpochInfo): T =
|
2021-10-18 16:37:27 +00:00
|
|
|
T(kind: EpochInfoFork.Altair, altairData: info)
|
2021-10-13 14:24:36 +00:00
|
|
|
|
2021-09-28 18:08:03 +00:00
|
|
|
template withState*(x: ForkedHashedBeaconState, body: untyped): untyped =
|
2021-10-18 16:37:27 +00:00
|
|
|
case x.kind
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Deneb
|
2023-03-04 22:23:52 +00:00
|
|
|
template forkyState: untyped {.inject, used.} = x.denebData
|
2022-12-07 16:47:23 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Capella
|
2022-11-02 16:23:30 +00:00
|
|
|
template forkyState: untyped {.inject, used.} = x.capellaData
|
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Bellatrix
|
2022-08-26 14:14:18 +00:00
|
|
|
template forkyState: untyped {.inject, used.} = x.bellatrixData
|
2021-09-28 18:08:03 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Altair
|
2022-08-26 14:14:18 +00:00
|
|
|
template forkyState: untyped {.inject, used.} = x.altairData
|
2021-09-28 18:08:03 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Phase0
|
2022-08-26 14:14:18 +00:00
|
|
|
template forkyState: untyped {.inject, used.} = x.phase0Data
|
2021-09-28 18:08:03 +00:00
|
|
|
body
|
2021-06-11 17:51:46 +00:00
|
|
|
|
2021-10-13 14:24:36 +00:00
|
|
|
template withEpochInfo*(x: ForkedEpochInfo, body: untyped): untyped =
|
|
|
|
case x.kind
|
|
|
|
of EpochInfoFork.Phase0:
|
2021-12-29 02:50:49 +00:00
|
|
|
const infoFork {.inject.} = EpochInfoFork.Phase0
|
2021-10-18 16:37:27 +00:00
|
|
|
template info: untyped {.inject.} = x.phase0Data
|
2021-10-13 14:24:36 +00:00
|
|
|
body
|
|
|
|
of EpochInfoFork.Altair:
|
2021-12-29 02:50:49 +00:00
|
|
|
const infoFork {.inject.} = EpochInfoFork.Altair
|
2021-10-18 16:37:27 +00:00
|
|
|
template info: untyped {.inject.} = x.altairData
|
2021-10-13 14:24:36 +00:00
|
|
|
body
|
|
|
|
|
|
|
|
template withEpochInfo*(
|
|
|
|
state: phase0.BeaconState, x: var ForkedEpochInfo, body: untyped): untyped =
|
2022-12-01 12:36:44 +00:00
|
|
|
if x.kind != EpochInfoFork.Phase0:
|
|
|
|
# Rare, should never happen even, so efficiency a non-issue
|
|
|
|
x = ForkedEpochInfo(kind: EpochInfoFork.Phase0)
|
2021-10-18 16:37:27 +00:00
|
|
|
template info: untyped {.inject.} = x.phase0Data
|
2021-10-13 14:24:36 +00:00
|
|
|
body
|
|
|
|
|
|
|
|
template withEpochInfo*(
|
2022-12-07 16:47:23 +00:00
|
|
|
state: altair.BeaconState | bellatrix.BeaconState | capella.BeaconState |
|
2023-02-20 08:45:49 +00:00
|
|
|
deneb.BeaconState,
|
2022-11-02 16:23:30 +00:00
|
|
|
x: var ForkedEpochInfo, body: untyped): untyped =
|
2022-12-01 12:36:44 +00:00
|
|
|
if x.kind != EpochInfoFork.Altair:
|
|
|
|
# Rare, so efficiency not critical
|
|
|
|
x = ForkedEpochInfo(kind: EpochInfoFork.Altair)
|
2021-10-18 16:37:27 +00:00
|
|
|
template info: untyped {.inject.} = x.altairData
|
2021-10-13 14:24:36 +00:00
|
|
|
body
|
|
|
|
|
2021-06-11 17:51:46 +00:00
|
|
|
func assign*(tgt: var ForkedHashedBeaconState, src: ForkedHashedBeaconState) =
|
2021-10-18 16:37:27 +00:00
|
|
|
if tgt.kind == src.kind:
|
|
|
|
case tgt.kind
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-04 22:23:52 +00:00
|
|
|
assign(tgt.denebData, src.denebData):
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2023-03-04 13:35:39 +00:00
|
|
|
assign(tgt.capellaData, src.capellaData):
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2022-01-24 16:23:13 +00:00
|
|
|
assign(tgt.bellatrixData, src.bellatrixData):
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2022-01-24 16:23:13 +00:00
|
|
|
assign(tgt.altairData, src.altairData):
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2022-01-24 16:23:13 +00:00
|
|
|
assign(tgt.phase0Data, src.phase0Data):
|
2021-06-11 17:51:46 +00:00
|
|
|
else:
|
|
|
|
# Ensure case object and discriminator get updated simultaneously, even
|
|
|
|
# with nimOldCaseObjects. This is infrequent.
|
|
|
|
tgt = src
|
|
|
|
|
2021-09-28 18:08:03 +00:00
|
|
|
template getStateField*(x: ForkedHashedBeaconState, y: untyped): untyped =
|
2021-09-22 20:06:50 +00:00
|
|
|
# The use of `unsafeAddr` avoids excessive copying in certain situations, e.g.,
|
|
|
|
# ```
|
2022-05-10 10:03:40 +00:00
|
|
|
# for index, validator in getStateField(stateData.data, validators):
|
2021-09-22 20:06:50 +00:00
|
|
|
# ```
|
|
|
|
# Without `unsafeAddr`, the `validators` list would be copied to a temporary variable.
|
2021-10-18 16:37:27 +00:00
|
|
|
(case x.kind
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: unsafeAddr x.denebData.data.y
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella: unsafeAddr x.capellaData.data.y
|
|
|
|
of ConsensusFork.Bellatrix: unsafeAddr x.bellatrixData.data.y
|
|
|
|
of ConsensusFork.Altair: unsafeAddr x.altairData.data.y
|
|
|
|
of ConsensusFork.Phase0: unsafeAddr x.phase0Data.data.y)[]
|
2021-06-11 17:51:46 +00:00
|
|
|
|
2021-09-28 18:08:03 +00:00
|
|
|
func getStateRoot*(x: ForkedHashedBeaconState): Eth2Digest =
|
2022-08-26 14:14:18 +00:00
|
|
|
withState(x): forkyState.root
|
2021-06-17 17:13:14 +00:00
|
|
|
|
|
|
|
func setStateRoot*(x: var ForkedHashedBeaconState, root: Eth2Digest) =
|
2022-08-26 14:14:18 +00:00
|
|
|
withState(x): forkyState.root = root
|
2021-08-27 09:00:06 +00:00
|
|
|
|
2023-02-16 09:32:12 +00:00
|
|
|
func consensusForkAtEpoch*(cfg: RuntimeConfig, epoch: Epoch): ConsensusFork =
|
2021-10-04 08:31:21 +00:00
|
|
|
## Return the current fork for the given epoch.
|
|
|
|
static:
|
2023-03-04 13:35:39 +00:00
|
|
|
doAssert high(ConsensusFork) == ConsensusFork.Deneb
|
|
|
|
doAssert ConsensusFork.Deneb > ConsensusFork.Capella
|
2023-01-28 19:53:41 +00:00
|
|
|
doAssert ConsensusFork.Capella > ConsensusFork.Bellatrix
|
|
|
|
doAssert ConsensusFork.Bellatrix > ConsensusFork.Altair
|
|
|
|
doAssert ConsensusFork.Altair > ConsensusFork.Phase0
|
2021-10-04 08:31:21 +00:00
|
|
|
doAssert GENESIS_EPOCH == 0
|
|
|
|
|
2023-03-04 13:35:39 +00:00
|
|
|
if epoch >= cfg.DENEB_FORK_EPOCH: ConsensusFork.Deneb
|
2023-01-28 19:53:41 +00:00
|
|
|
elif epoch >= cfg.CAPELLA_FORK_EPOCH: ConsensusFork.Capella
|
|
|
|
elif epoch >= cfg.BELLATRIX_FORK_EPOCH: ConsensusFork.Bellatrix
|
|
|
|
elif epoch >= cfg.ALTAIR_FORK_EPOCH: ConsensusFork.Altair
|
|
|
|
else: ConsensusFork.Phase0
|
2021-10-04 08:31:21 +00:00
|
|
|
|
2023-03-11 16:58:48 +00:00
|
|
|
func consensusForkForDigest*(
|
2023-01-28 19:53:41 +00:00
|
|
|
forkDigests: ForkDigests, forkDigest: ForkDigest): Opt[ConsensusFork] =
|
2023-03-04 13:35:39 +00:00
|
|
|
static: doAssert high(ConsensusFork) == ConsensusFork.Deneb
|
2023-03-10 17:13:40 +00:00
|
|
|
if forkDigest == forkDigests.deneb:
|
2023-03-04 13:35:39 +00:00
|
|
|
ok ConsensusFork.Deneb
|
2022-12-06 16:43:11 +00:00
|
|
|
elif forkDigest == forkDigests.capella:
|
2023-01-28 19:53:41 +00:00
|
|
|
ok ConsensusFork.Capella
|
2022-11-02 16:23:30 +00:00
|
|
|
elif forkDigest == forkDigests.bellatrix:
|
2023-01-28 19:53:41 +00:00
|
|
|
ok ConsensusFork.Bellatrix
|
2022-05-23 12:02:54 +00:00
|
|
|
elif forkDigest == forkDigests.altair:
|
2023-01-28 19:53:41 +00:00
|
|
|
ok ConsensusFork.Altair
|
2022-05-23 12:02:54 +00:00
|
|
|
elif forkDigest == forkDigests.phase0:
|
2023-01-28 19:53:41 +00:00
|
|
|
ok ConsensusFork.Phase0
|
2022-05-23 12:02:54 +00:00
|
|
|
else:
|
|
|
|
err()
|
2021-10-18 12:32:54 +00:00
|
|
|
|
2023-03-11 14:39:29 +00:00
|
|
|
func atConsensusFork*(
|
2023-03-11 00:35:52 +00:00
|
|
|
forkDigests: ForkDigests, consensusFork: ConsensusFork): ForkDigest =
|
|
|
|
case consensusFork
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-10 17:13:40 +00:00
|
|
|
forkDigests.deneb
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2022-11-02 16:23:30 +00:00
|
|
|
forkDigests.capella
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2022-05-31 10:45:37 +00:00
|
|
|
forkDigests.bellatrix
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2022-05-31 10:45:37 +00:00
|
|
|
forkDigests.altair
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2022-05-31 10:45:37 +00:00
|
|
|
forkDigests.phase0
|
|
|
|
|
|
|
|
template atEpoch*(
|
|
|
|
forkDigests: ForkDigests, epoch: Epoch, cfg: RuntimeConfig): ForkDigest =
|
2023-03-11 14:39:29 +00:00
|
|
|
forkDigests.atConsensusFork(cfg.consensusForkAtEpoch(epoch))
|
2022-05-31 10:45:37 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template asSigned*(
|
|
|
|
x: ForkedMsgTrustedSignedBeaconBlock |
|
2022-08-25 03:53:59 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock
|
|
|
|
): ForkedSignedBeaconBlock =
|
2021-07-14 12:18:52 +00:00
|
|
|
isomorphicCast[ForkedSignedBeaconBlock](x)
|
|
|
|
|
2022-08-25 03:53:59 +00:00
|
|
|
template asSigned*(
|
|
|
|
x: ref ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ref ForkedTrustedSignedBeaconBlock
|
|
|
|
): ref ForkedSignedBeaconBlock =
|
|
|
|
isomorphicCast[ref ForkedSignedBeaconBlock](x)
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template asMsgTrusted*(
|
|
|
|
x: ForkedSignedBeaconBlock |
|
2022-08-25 03:53:59 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock
|
|
|
|
): ForkedMsgTrustedSignedBeaconBlock =
|
2022-06-10 14:16:37 +00:00
|
|
|
isomorphicCast[ForkedMsgTrustedSignedBeaconBlock](x)
|
|
|
|
|
2022-08-25 03:53:59 +00:00
|
|
|
template asMsgTrusted*(
|
|
|
|
x: ref ForkedSignedBeaconBlock |
|
|
|
|
ref ForkedTrustedSignedBeaconBlock
|
|
|
|
): ref ForkedMsgTrustedSignedBeaconBlock =
|
|
|
|
isomorphicCast[ref ForkedMsgTrustedSignedBeaconBlock](x)
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template asTrusted*(
|
|
|
|
x: ForkedSignedBeaconBlock |
|
2022-08-25 03:53:59 +00:00
|
|
|
ForkedMsgTrustedSignedBeaconBlock
|
|
|
|
): ForkedTrustedSignedBeaconBlock =
|
2021-07-14 12:18:52 +00:00
|
|
|
isomorphicCast[ForkedTrustedSignedBeaconBlock](x)
|
|
|
|
|
2022-08-25 03:53:59 +00:00
|
|
|
template asTrusted*(
|
|
|
|
x: ref ForkedSignedBeaconBlock |
|
|
|
|
ref ForkedMsgTrustedSignedBeaconBlock
|
|
|
|
): ref ForkedTrustedSignedBeaconBlock =
|
|
|
|
isomorphicCast[ref ForkedTrustedSignedBeaconBlock](x)
|
|
|
|
|
2021-10-06 17:05:06 +00:00
|
|
|
template withBlck*(
|
2022-05-17 16:55:03 +00:00
|
|
|
x: ForkedBeaconBlock | Web3SignerForkedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
ForkedSignedBeaconBlock | ForkedMsgTrustedSignedBeaconBlock |
|
2022-11-24 09:14:05 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock | ForkedBlindedBeaconBlock |
|
|
|
|
ForkedSignedBlindedBeaconBlock,
|
2021-10-06 17:05:06 +00:00
|
|
|
body: untyped): untyped =
|
2021-07-14 12:18:52 +00:00
|
|
|
case x.kind
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Phase0
|
2021-10-18 16:37:27 +00:00
|
|
|
template blck: untyped {.inject.} = x.phase0Data
|
2021-07-14 12:18:52 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Altair
|
2021-10-18 16:37:27 +00:00
|
|
|
template blck: untyped {.inject.} = x.altairData
|
2021-07-14 12:18:52 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Bellatrix
|
2022-01-24 16:23:13 +00:00
|
|
|
template blck: untyped {.inject.} = x.bellatrixData
|
2021-09-27 14:22:58 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Capella
|
2022-11-02 16:23:30 +00:00
|
|
|
template blck: untyped {.inject.} = x.capellaData
|
|
|
|
body
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject, used.} = ConsensusFork.Deneb
|
2023-03-04 22:23:52 +00:00
|
|
|
template blck: untyped {.inject.} = x.denebData
|
2022-12-05 16:29:09 +00:00
|
|
|
body
|
2021-07-14 12:18:52 +00:00
|
|
|
|
2021-09-28 18:08:03 +00:00
|
|
|
func proposer_index*(x: ForkedBeaconBlock): uint64 =
|
|
|
|
withBlck(x): blck.proposer_index
|
|
|
|
|
2022-08-01 06:41:47 +00:00
|
|
|
func hash_tree_root*(x: ForkedBeaconBlock | Web3SignerForkedBeaconBlock):
|
|
|
|
Eth2Digest =
|
2021-09-28 18:08:03 +00:00
|
|
|
withBlck(x): hash_tree_root(blck)
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template getForkedBlockField*(
|
|
|
|
x: ForkedSignedBeaconBlock |
|
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedTrustedSignedBeaconBlock,
|
|
|
|
y: untyped): untyped =
|
2021-09-28 18:08:03 +00:00
|
|
|
# unsafeAddr avoids a copy of the field in some cases
|
|
|
|
(case x.kind
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0: unsafeAddr x.phase0Data.message.y
|
|
|
|
of ConsensusFork.Altair: unsafeAddr x.altairData.message.y
|
|
|
|
of ConsensusFork.Bellatrix: unsafeAddr x.bellatrixData.message.y
|
|
|
|
of ConsensusFork.Capella: unsafeAddr x.capellaData.message.y
|
2023-03-04 22:23:52 +00:00
|
|
|
of ConsensusFork.Deneb: unsafeAddr x.denebData.message.y)[]
|
2021-07-14 12:18:52 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template signature*(x: ForkedSignedBeaconBlock |
|
2022-11-24 09:14:05 +00:00
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedSignedBlindedBeaconBlock): ValidatorSig =
|
2021-07-14 12:18:52 +00:00
|
|
|
withBlck(x): blck.signature
|
|
|
|
|
|
|
|
template signature*(x: ForkedTrustedSignedBeaconBlock): TrustedSig =
|
|
|
|
withBlck(x): blck.signature
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template root*(x: ForkedSignedBeaconBlock |
|
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedTrustedSignedBeaconBlock): Eth2Digest =
|
2021-07-14 12:18:52 +00:00
|
|
|
withBlck(x): blck.root
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template slot*(x: ForkedSignedBeaconBlock |
|
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedTrustedSignedBeaconBlock): Slot =
|
2021-09-28 18:08:03 +00:00
|
|
|
withBlck(x): blck.message.slot
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2022-11-24 09:14:05 +00:00
|
|
|
template shortLog*(x: ForkedBeaconBlock | ForkedBlindedBeaconBlock): auto =
|
2021-08-27 09:00:06 +00:00
|
|
|
withBlck(x): shortLog(blck)
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
template shortLog*(x: ForkedSignedBeaconBlock |
|
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
2022-11-24 09:14:05 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock |
|
|
|
|
ForkedSignedBlindedBeaconBlock): auto =
|
2021-08-27 09:00:06 +00:00
|
|
|
withBlck(x): shortLog(blck)
|
2021-07-07 09:09:47 +00:00
|
|
|
|
2021-08-27 09:00:06 +00:00
|
|
|
chronicles.formatIt ForkedBeaconBlock: it.shortLog
|
2021-07-14 12:18:52 +00:00
|
|
|
chronicles.formatIt ForkedSignedBeaconBlock: it.shortLog
|
2022-06-10 14:16:37 +00:00
|
|
|
chronicles.formatIt ForkedMsgTrustedSignedBeaconBlock: it.shortLog
|
2021-07-14 12:18:52 +00:00
|
|
|
chronicles.formatIt ForkedTrustedSignedBeaconBlock: it.shortLog
|
2021-08-09 12:54:45 +00:00
|
|
|
|
2021-10-06 17:05:06 +00:00
|
|
|
template withStateAndBlck*(
|
|
|
|
s: ForkedHashedBeaconState,
|
|
|
|
b: ForkedBeaconBlock | ForkedSignedBeaconBlock |
|
2022-06-10 14:16:37 +00:00
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
2021-10-06 17:05:06 +00:00
|
|
|
ForkedTrustedSignedBeaconBlock,
|
|
|
|
body: untyped): untyped =
|
2021-10-18 16:37:27 +00:00
|
|
|
case s.kind
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject.} = ConsensusFork.Deneb
|
2023-03-04 22:23:52 +00:00
|
|
|
template forkyState: untyped {.inject.} = s.denebData
|
|
|
|
template blck: untyped {.inject.} = b.denebData
|
2022-12-07 16:47:23 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject.} = ConsensusFork.Capella
|
2022-11-02 16:23:30 +00:00
|
|
|
template forkyState: untyped {.inject.} = s.capellaData
|
|
|
|
template blck: untyped {.inject.} = b.capellaData
|
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject.} = ConsensusFork.Bellatrix
|
2022-09-28 01:15:10 +00:00
|
|
|
template forkyState: untyped {.inject.} = s.bellatrixData
|
2022-01-24 16:23:13 +00:00
|
|
|
template blck: untyped {.inject.} = b.bellatrixData
|
2021-10-06 17:05:06 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Altair:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject.} = ConsensusFork.Altair
|
2022-09-28 01:15:10 +00:00
|
|
|
template forkyState: untyped {.inject.} = s.altairData
|
2021-10-18 16:37:27 +00:00
|
|
|
template blck: untyped {.inject.} = b.altairData
|
2021-10-06 17:05:06 +00:00
|
|
|
body
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Phase0:
|
2023-03-11 00:35:52 +00:00
|
|
|
const consensusFork {.inject.} = ConsensusFork.Phase0
|
2022-09-28 01:15:10 +00:00
|
|
|
template forkyState: untyped {.inject.} = s.phase0Data
|
2021-10-18 16:37:27 +00:00
|
|
|
template blck: untyped {.inject.} = b.phase0Data
|
2021-10-06 17:05:06 +00:00
|
|
|
body
|
|
|
|
|
2022-03-07 13:56:43 +00:00
|
|
|
func toBeaconBlockHeader*(
|
2023-02-21 13:21:38 +00:00
|
|
|
blck: SomeForkyBeaconBlock | bellatrix_mev.BlindedBeaconBlock |
|
|
|
|
capella_mev.BlindedBeaconBlock): BeaconBlockHeader =
|
2022-03-07 13:56:43 +00:00
|
|
|
## Reduce a given `BeaconBlock` to its `BeaconBlockHeader`.
|
|
|
|
BeaconBlockHeader(
|
|
|
|
slot: blck.slot,
|
|
|
|
proposer_index: blck.proposer_index,
|
|
|
|
parent_root: blck.parent_root,
|
|
|
|
state_root: blck.state_root,
|
|
|
|
body_root: blck.body.hash_tree_root())
|
|
|
|
|
|
|
|
template toBeaconBlockHeader*(
|
|
|
|
blck: SomeForkySignedBeaconBlock): BeaconBlockHeader =
|
|
|
|
## Reduce a given `SignedBeaconBlock` to its `BeaconBlockHeader`.
|
|
|
|
blck.message.toBeaconBlockHeader
|
|
|
|
|
|
|
|
template toBeaconBlockHeader*(
|
2022-06-10 14:16:37 +00:00
|
|
|
blckParam: ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedTrustedSignedBeaconBlock): BeaconBlockHeader =
|
|
|
|
## Reduce a given signed beacon block to its `BeaconBlockHeader`.
|
|
|
|
withBlck(blckParam): blck.toBeaconBlockHeader()
|
2022-03-07 13:56:43 +00:00
|
|
|
|
2021-11-05 07:34:34 +00:00
|
|
|
func genesisFork*(cfg: RuntimeConfig): Fork =
|
|
|
|
Fork(
|
|
|
|
previous_version: cfg.GENESIS_FORK_VERSION,
|
|
|
|
current_version: cfg.GENESIS_FORK_VERSION,
|
|
|
|
epoch: GENESIS_EPOCH)
|
|
|
|
|
|
|
|
func altairFork*(cfg: RuntimeConfig): Fork =
|
|
|
|
Fork(
|
|
|
|
previous_version: cfg.GENESIS_FORK_VERSION,
|
|
|
|
current_version: cfg.ALTAIR_FORK_VERSION,
|
|
|
|
epoch: cfg.ALTAIR_FORK_EPOCH)
|
|
|
|
|
2022-01-24 16:23:13 +00:00
|
|
|
func bellatrixFork*(cfg: RuntimeConfig): Fork =
|
2021-11-05 07:34:34 +00:00
|
|
|
Fork(
|
|
|
|
previous_version: cfg.ALTAIR_FORK_VERSION,
|
2022-01-20 08:30:33 +00:00
|
|
|
current_version: cfg.BELLATRIX_FORK_VERSION,
|
2022-02-02 13:06:55 +00:00
|
|
|
epoch: cfg.BELLATRIX_FORK_EPOCH)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-11-02 16:23:30 +00:00
|
|
|
func capellaFork*(cfg: RuntimeConfig): Fork =
|
|
|
|
Fork(
|
|
|
|
previous_version: cfg.BELLATRIX_FORK_VERSION,
|
|
|
|
current_version: cfg.CAPELLA_FORK_VERSION,
|
|
|
|
epoch: cfg.CAPELLA_FORK_EPOCH)
|
|
|
|
|
2023-02-15 14:44:09 +00:00
|
|
|
func denebFork*(cfg: RuntimeConfig): Fork =
|
2022-12-05 16:29:09 +00:00
|
|
|
Fork(
|
|
|
|
previous_version: cfg.CAPELLA_FORK_VERSION,
|
2023-02-15 14:44:09 +00:00
|
|
|
current_version: cfg.DENEB_FORK_VERSION,
|
|
|
|
epoch: cfg.DENEB_FORK_EPOCH)
|
2022-12-05 16:29:09 +00:00
|
|
|
|
2022-02-17 11:53:55 +00:00
|
|
|
func forkAtEpoch*(cfg: RuntimeConfig, epoch: Epoch): Fork =
|
2023-02-16 09:32:12 +00:00
|
|
|
case cfg.consensusForkAtEpoch(epoch)
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb: cfg.denebFork
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella: cfg.capellaFork
|
|
|
|
of ConsensusFork.Bellatrix: cfg.bellatrixFork
|
|
|
|
of ConsensusFork.Altair: cfg.altairFork
|
|
|
|
of ConsensusFork.Phase0: cfg.genesisFork
|
2021-08-09 12:54:45 +00:00
|
|
|
|
2022-02-17 11:53:55 +00:00
|
|
|
func forkVersionAtEpoch*(cfg: RuntimeConfig, epoch: Epoch): Version =
|
2023-02-16 09:32:12 +00:00
|
|
|
case cfg.consensusForkAtEpoch(epoch)
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb: cfg.DENEB_FORK_VERSION
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Capella: cfg.CAPELLA_FORK_VERSION
|
|
|
|
of ConsensusFork.Bellatrix: cfg.BELLATRIX_FORK_VERSION
|
|
|
|
of ConsensusFork.Altair: cfg.ALTAIR_FORK_VERSION
|
|
|
|
of ConsensusFork.Phase0: cfg.GENESIS_FORK_VERSION
|
2021-08-09 12:54:45 +00:00
|
|
|
|
2022-02-17 11:53:55 +00:00
|
|
|
func nextForkEpochAtEpoch*(cfg: RuntimeConfig, epoch: Epoch): Epoch =
|
2023-03-04 13:35:39 +00:00
|
|
|
static: doAssert high(ConsensusFork) == ConsensusFork.Deneb
|
2023-02-16 09:32:12 +00:00
|
|
|
case cfg.consensusForkAtEpoch(epoch)
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb: FAR_FUTURE_EPOCH
|
2023-02-15 14:44:09 +00:00
|
|
|
of ConsensusFork.Capella: cfg.DENEB_FORK_EPOCH
|
2023-01-28 19:53:41 +00:00
|
|
|
of ConsensusFork.Bellatrix: cfg.CAPELLA_FORK_EPOCH
|
|
|
|
of ConsensusFork.Altair: cfg.BELLATRIX_FORK_EPOCH
|
|
|
|
of ConsensusFork.Phase0: cfg.ALTAIR_FORK_EPOCH
|
|
|
|
|
|
|
|
func forkVersion*(cfg: RuntimeConfig, consensusFork: ConsensusFork): Version =
|
|
|
|
case consensusFork
|
|
|
|
of ConsensusFork.Phase0: cfg.GENESIS_FORK_VERSION
|
|
|
|
of ConsensusFork.Altair: cfg.ALTAIR_FORK_VERSION
|
|
|
|
of ConsensusFork.Bellatrix: cfg.BELLATRIX_FORK_VERSION
|
|
|
|
of ConsensusFork.Capella: cfg.CAPELLA_FORK_VERSION
|
2023-03-04 13:35:39 +00:00
|
|
|
of ConsensusFork.Deneb: cfg.DENEB_FORK_VERSION
|
2023-01-28 19:53:41 +00:00
|
|
|
|
2023-03-11 20:09:21 +00:00
|
|
|
func lcDataForkAtConsensusFork*(
|
|
|
|
consensusFork: ConsensusFork): LightClientDataFork =
|
2023-03-10 17:16:26 +00:00
|
|
|
static: doAssert LightClientDataFork.high == LightClientDataFork.Deneb
|
2023-03-11 00:35:52 +00:00
|
|
|
if consensusFork >= ConsensusFork.Deneb:
|
2023-03-10 17:16:26 +00:00
|
|
|
LightClientDataFork.Deneb
|
2023-03-11 00:35:52 +00:00
|
|
|
elif consensusFork >= ConsensusFork.Capella:
|
2023-01-18 14:32:57 +00:00
|
|
|
LightClientDataFork.Capella
|
2023-03-11 00:35:52 +00:00
|
|
|
elif consensusFork >= ConsensusFork.Altair:
|
2023-01-14 21:19:50 +00:00
|
|
|
LightClientDataFork.Altair
|
|
|
|
else:
|
|
|
|
LightClientDataFork.None
|
|
|
|
|
2022-12-08 16:21:53 +00:00
|
|
|
func getForkSchedule*(cfg: RuntimeConfig): array[5, Fork] =
|
2021-08-23 10:41:48 +00:00
|
|
|
## This procedure returns list of known and/or scheduled forks.
|
|
|
|
##
|
|
|
|
## This procedure is used by HTTP REST framework and validator client.
|
|
|
|
##
|
|
|
|
## NOTE: Update this procedure when new fork will be scheduled.
|
2022-12-08 16:21:53 +00:00
|
|
|
[cfg.genesisFork(), cfg.altairFork(), cfg.bellatrixFork(), cfg.capellaFork(),
|
2023-02-15 14:44:09 +00:00
|
|
|
cfg.denebFork()]
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2021-11-10 11:39:08 +00:00
|
|
|
type
|
|
|
|
# The first few fields of a state, shared across all forks
|
|
|
|
BeaconStateHeader = object
|
|
|
|
genesis_time: uint64
|
|
|
|
genesis_validators_root: Eth2Digest
|
2022-01-11 10:01:54 +00:00
|
|
|
slot: Slot
|
2021-11-10 11:39:08 +00:00
|
|
|
|
2023-01-03 19:37:09 +00:00
|
|
|
func readSszForkedHashedBeaconState*(
|
|
|
|
cfg: RuntimeConfig, slot: Slot, data: openArray[byte]):
|
|
|
|
ForkedHashedBeaconState {.raises: [Defect, SszError].} =
|
|
|
|
# TODO https://github.com/nim-lang/Nim/issues/19357
|
|
|
|
result = ForkedHashedBeaconState(
|
2023-02-16 09:32:12 +00:00
|
|
|
kind: cfg.consensusForkAtEpoch(slot.epoch()))
|
2023-01-03 19:37:09 +00:00
|
|
|
|
|
|
|
withState(result):
|
|
|
|
readSszBytes(data, forkyState.data)
|
|
|
|
forkyState.root = hash_tree_root(forkyState.data)
|
|
|
|
|
2021-11-10 11:39:08 +00:00
|
|
|
func readSszForkedHashedBeaconState*(cfg: RuntimeConfig, data: openArray[byte]):
|
2021-11-05 07:34:34 +00:00
|
|
|
ForkedHashedBeaconState {.raises: [Defect, SszError].} =
|
2023-01-03 19:37:09 +00:00
|
|
|
## Read a state picking the right fork by first reading the slot from the byte
|
|
|
|
## source
|
2021-11-10 11:39:08 +00:00
|
|
|
if data.len() < sizeof(BeaconStateHeader):
|
|
|
|
raise (ref MalformedSszError)(msg: "Not enough data for BeaconState header")
|
|
|
|
let header = SSZ.decode(
|
|
|
|
data.toOpenArray(0, sizeof(BeaconStateHeader) - 1),
|
|
|
|
BeaconStateHeader)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-02-16 15:44:04 +00:00
|
|
|
# TODO https://github.com/nim-lang/Nim/issues/19357
|
2023-01-03 19:37:09 +00:00
|
|
|
result = readSszForkedHashedBeaconState(cfg, header.slot, data)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2021-11-10 11:39:08 +00:00
|
|
|
type
|
|
|
|
ForkedBeaconBlockHeader = object
|
|
|
|
message*: uint32 # message offset
|
|
|
|
signature*: ValidatorSig
|
|
|
|
slot: Slot # start of BeaconBlock
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2022-01-06 07:38:40 +00:00
|
|
|
func readSszForkedSignedBeaconBlock*(
|
2021-11-10 11:39:08 +00:00
|
|
|
cfg: RuntimeConfig, data: openArray[byte]):
|
2022-01-06 07:38:40 +00:00
|
|
|
ForkedSignedBeaconBlock {.raises: [Defect, SszError].} =
|
2021-11-10 11:39:08 +00:00
|
|
|
## Helper to read a header from bytes when it's not certain what kind of block
|
|
|
|
## it is
|
2021-12-10 02:41:57 +00:00
|
|
|
if data.len() < sizeof(ForkedBeaconBlockHeader):
|
2021-11-10 11:39:08 +00:00
|
|
|
raise (ref MalformedSszError)(msg: "Not enough data for SignedBeaconBlock header")
|
|
|
|
let header = SSZ.decode(
|
|
|
|
data.toOpenArray(0, sizeof(ForkedBeaconBlockHeader) - 1),
|
|
|
|
ForkedBeaconBlockHeader)
|
2021-12-10 02:41:57 +00:00
|
|
|
|
2022-02-16 15:44:04 +00:00
|
|
|
# TODO https://github.com/nim-lang/Nim/issues/19357
|
2022-01-06 07:38:40 +00:00
|
|
|
result = ForkedSignedBeaconBlock(
|
2023-02-16 20:16:54 +00:00
|
|
|
kind: cfg.consensusForkAtEpoch(header.slot.epoch()))
|
2021-11-10 11:39:08 +00:00
|
|
|
|
|
|
|
withBlck(result):
|
|
|
|
readSszBytes(data, blck)
|
2021-11-05 07:34:34 +00:00
|
|
|
|
2023-02-27 21:37:37 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0-rc.3/specs/phase0/beacon-chain.md#compute_fork_data_root
|
2021-11-05 07:34:34 +00:00
|
|
|
func compute_fork_data_root*(current_version: Version,
|
|
|
|
genesis_validators_root: Eth2Digest): Eth2Digest =
|
|
|
|
## Return the 32-byte fork data root for the ``current_version`` and
|
|
|
|
## ``genesis_validators_root``.
|
|
|
|
## This is used primarily in signature domains to avoid collisions across
|
|
|
|
## forks/chains.
|
|
|
|
hash_tree_root(ForkData(
|
|
|
|
current_version: current_version,
|
|
|
|
genesis_validators_root: genesis_validators_root
|
|
|
|
))
|
|
|
|
|
2023-03-17 12:14:08 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.3.0-rc.4/specs/phase0/beacon-chain.md#compute_fork_digest
|
2021-11-05 07:34:34 +00:00
|
|
|
func compute_fork_digest*(current_version: Version,
|
|
|
|
genesis_validators_root: Eth2Digest): ForkDigest =
|
|
|
|
## Return the 4-byte fork digest for the ``current_version`` and
|
|
|
|
## ``genesis_validators_root``.
|
|
|
|
## This is a digest primarily used for domain separation on the p2p layer.
|
|
|
|
## 4-bytes suffices for practical separation of forks/chains.
|
|
|
|
array[4, byte](result)[0..3] =
|
|
|
|
compute_fork_data_root(
|
|
|
|
current_version, genesis_validators_root).data.toOpenArray(0, 3)
|
|
|
|
|
|
|
|
func init*(T: type ForkDigests,
|
|
|
|
cfg: RuntimeConfig,
|
2022-04-08 16:22:49 +00:00
|
|
|
genesis_validators_root: Eth2Digest): T =
|
2023-03-04 13:35:39 +00:00
|
|
|
static: doAssert high(ConsensusFork) == ConsensusFork.Deneb
|
2021-11-05 07:34:34 +00:00
|
|
|
T(
|
|
|
|
phase0:
|
2022-04-08 16:22:49 +00:00
|
|
|
compute_fork_digest(cfg.GENESIS_FORK_VERSION, genesis_validators_root),
|
2021-11-05 07:34:34 +00:00
|
|
|
altair:
|
2022-04-08 16:22:49 +00:00
|
|
|
compute_fork_digest(cfg.ALTAIR_FORK_VERSION, genesis_validators_root),
|
2022-01-05 14:24:15 +00:00
|
|
|
bellatrix:
|
2022-04-08 16:22:49 +00:00
|
|
|
compute_fork_digest(cfg.BELLATRIX_FORK_VERSION, genesis_validators_root),
|
2022-06-03 14:42:40 +00:00
|
|
|
capella:
|
2022-12-08 16:21:53 +00:00
|
|
|
compute_fork_digest(cfg.CAPELLA_FORK_VERSION, genesis_validators_root),
|
2023-03-10 17:13:40 +00:00
|
|
|
deneb:
|
2023-02-15 14:44:09 +00:00
|
|
|
compute_fork_digest(cfg.DENEB_FORK_VERSION, genesis_validators_root)
|
2021-11-05 07:34:34 +00:00
|
|
|
)
|
2022-03-16 15:00:18 +00:00
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
func toBlockId*(header: BeaconBlockHeader): BlockId =
|
|
|
|
BlockId(root: header.hash_tree_root(), slot: header.slot)
|
|
|
|
|
2022-03-16 15:00:18 +00:00
|
|
|
func toBlockId*(blck: SomeForkySignedBeaconBlock): BlockId =
|
|
|
|
BlockId(root: blck.root, slot: blck.message.slot)
|
|
|
|
|
2022-06-10 14:16:37 +00:00
|
|
|
func toBlockId*(blck: ForkedSignedBeaconBlock |
|
|
|
|
ForkedMsgTrustedSignedBeaconBlock |
|
|
|
|
ForkedTrustedSignedBeaconBlock): BlockId =
|
2022-03-16 15:00:18 +00:00
|
|
|
withBlck(blck): BlockId(root: blck.root, slot: blck.message.slot)
|