Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/developer-hub/src/components/LazerTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ type LazerDeployment = {
};

// Chains we never want to show in the docs (e.g. internal devnets).
const HIDDEN_CHAIN_IDS = new Set<string>(["ethereal_devnet"]);
const HIDDEN_CHAIN_IDS = new Set<string>([
"ethereal_devnet",
"megaeth",
"polynomial",
]);

// Community-maintained EVM chain registry (https://github.com/ethereum-lists/chains).
// Same data source as chainlist.org. Re-fetched at most once per day per build.
Expand Down
Loading