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(