-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TT-1425] Support pre-Deneb genesis (#1034)
- Loading branch information
Showing
40 changed files
with
1,040 additions
and
532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package test_env | ||
package types | ||
|
||
const ( | ||
MsgInvalidDockerImageFormat = "invalid docker image format: %s" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package types | ||
|
||
type ExecutionLayer string | ||
|
||
const ( | ||
ExecutionLayer_Geth ExecutionLayer = "geth" | ||
ExecutionLayer_Nethermind ExecutionLayer = "nethermind" | ||
ExecutionLayer_Erigon ExecutionLayer = "erigon" | ||
ExecutionLayer_Besu ExecutionLayer = "besu" | ||
ExecutionLayer_Reth ExecutionLayer = "reth" | ||
) | ||
|
||
type EthereumVersion string | ||
|
||
const ( | ||
EthereumVersion_Eth2 EthereumVersion = "eth2" | ||
// Deprecated: use EthereumVersion_Eth2 instead | ||
EthereumVersion_Eth2_Legacy EthereumVersion = "pos" | ||
EthereumVersion_Eth1 EthereumVersion = "eth1" | ||
// Deprecated: use EthereumVersion_Eth1 instead | ||
EthereumVersion_Eth1_Legacy EthereumVersion = "pow" | ||
) |
Oops, something went wrong.