Skip to content

Commit

Permalink
chore: remove mekong network config (#7400)
Browse files Browse the repository at this point in the history
The network is based on devnet-4 specs and it's no longer possible to
join it using our latest unstable since we merged devnet-5 changes.

For users that still wanna experiment on Mekong it's possible to use our
[1.25.0](https://github.com/ChainSafe/lodestar/releases/tag/v1.25.0)
release.
  • Loading branch information
nflaig authored Jan 27, 2025
1 parent 5b8e821 commit 9be5040
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 196 deletions.
6 changes: 1 addition & 5 deletions packages/cli/src/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,16 @@ import * as ephemery from "./ephemery.js";
import * as gnosis from "./gnosis.js";
import * as holesky from "./holesky.js";
import * as mainnet from "./mainnet.js";
import * as mekong from "./mekong.js";
import * as sepolia from "./sepolia.js";

export type NetworkName = "mainnet" | "dev" | "gnosis" | "sepolia" | "holesky" | "chiado" | "ephemery" | "mekong";
export type NetworkName = "mainnet" | "dev" | "gnosis" | "sepolia" | "holesky" | "chiado" | "ephemery";
export const networkNames: NetworkName[] = [
"mainnet",
"gnosis",
"sepolia",
"holesky",
"chiado",
"ephemery",
"mekong",

// Leave always as last network. The order matters for the --help printout
"dev",
Expand Down Expand Up @@ -72,8 +70,6 @@ export function getNetworkData(network: NetworkName): {
return chiado;
case "ephemery":
return ephemery;
case "mekong":
return mekong;
default:
throw Error(`Network not supported: ${network}`);
}
Expand Down
Loading

0 comments on commit 9be5040

Please sign in to comment.