From 35d65041ba3aba7129118160e692e6ee182c3bbc Mon Sep 17 00:00:00 2001 From: Manuel Wedler Date: Thu, 8 Aug 2024 11:19:25 +0200 Subject: [PATCH] Remove Ropsten, Rinkeby, Goerli from default chains on chain selector --- .../src/app/components/SearchableChainDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/contract-verification/src/app/components/SearchableChainDropdown.tsx b/apps/contract-verification/src/app/components/SearchableChainDropdown.tsx index 812c0bf128..b58a755a29 100644 --- a/apps/contract-verification/src/app/components/SearchableChainDropdown.tsx +++ b/apps/contract-verification/src/app/components/SearchableChainDropdown.tsx @@ -16,7 +16,7 @@ interface DropdownProps { export const SearchableChainDropdown: React.FC = ({ label, id, setSelectedChain, selectedChain }) => { const { chains } = React.useContext(AppContext) - const ethereumChainIds = [1, 3, 4, 5, 11155111, 17000] + const ethereumChainIds = [1, 11155111, 17000] // Add Ethereum chains to the head of the chains list. Sort the rest alphabetically const dropdownChains = useMemo(