Holesky support (#12821)

* Add holesky config


Copy config/params from deneb-integration

* Add --holesky flag

* Handle no genesis block error and suggest to user a workaround
This commit is contained in:
Preston Van Loon
2023-08-29 09:27:50 -05:00
committed by GitHub
parent 0ea0afb494
commit 63126fd51f
16 changed files with 133 additions and 3 deletions

View File

@@ -29,6 +29,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.SepoliaTestnet,
features.HoleskyTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -65,6 +66,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.SepoliaTestnet,
features.HoleskyTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -98,6 +100,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.SepoliaTestnet,
features.HoleskyTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -128,6 +131,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.SepoliaTestnet,
features.HoleskyTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {
@@ -170,6 +174,7 @@ var Commands = &cli.Command{
features.Mainnet,
features.PraterTestnet,
features.SepoliaTestnet,
features.HoleskyTestnet,
cmd.AcceptTosFlag,
}),
Before: func(cliCtx *cli.Context) error {