diff --git a/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx b/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx index fb764c29922..ca63f7bfb66 100644 --- a/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx +++ b/apps/dashboard/src/@/components/misc/CustomChainRenderer.tsx @@ -3,7 +3,6 @@ import type { ThirdwebClient } from "thirdweb"; import type { UseNetworkSwitcherModalOptions } from "thirdweb/react"; import { Button } from "@/components/ui/button"; import { Spinner } from "@/components/ui/Spinner"; -import { OPSponsoredChains } from "@/constants/chains"; import { useAllChainsData } from "@/hooks/chains/allChains"; import { ChainIconClient } from "@/icons/ChainIcon"; import { cn } from "@/lib/utils"; @@ -32,7 +31,6 @@ export const CustomChainRenderer = ({ const { idToChain } = useAllChainsData(); const storedChain = idToChain.get(chain.id); const isDeprecated = storedChain?.status === "deprecated"; - const isSponsored = OPSponsoredChains.includes(chain.id); return (
@@ -70,16 +68,6 @@ export const CustomChainRenderer = ({ Deprecated
)} - {isSponsored && ( -
- Sponsored -
- )} {switching && (
diff --git a/apps/dashboard/src/@/constants/chains.ts b/apps/dashboard/src/@/constants/chains.ts deleted file mode 100644 index b18bb4c03fe..00000000000 --- a/apps/dashboard/src/@/constants/chains.ts +++ /dev/null @@ -1,23 +0,0 @@ -// TODO: move to API -export const OPSponsoredChains = [ - // Optimism - 10, - // Base - 8453, - // Zora - 7777777, - // Mode - 34443, - // Frax - 252, - // Cyber - 7560, - // Redstone - 690, - // Ancient8 - 888888888, - //Donatuz - 42026, - //Mantle - 5000, -];