Remove Ropsten, Rinkeby, Goerli from default chains on chain selector

pull/5285/head
Manuel Wedler 4 months ago committed by Aniket
parent 661a012ff1
commit 35d65041ba
  1. 2
      apps/contract-verification/src/app/components/SearchableChainDropdown.tsx

@ -16,7 +16,7 @@ interface DropdownProps {
export const SearchableChainDropdown: React.FC<DropdownProps> = ({ label, id, setSelectedChain, selectedChain }) => { export const SearchableChainDropdown: React.FC<DropdownProps> = ({ label, id, setSelectedChain, selectedChain }) => {
const { chains } = React.useContext(AppContext) 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 // Add Ethereum chains to the head of the chains list. Sort the rest alphabetically
const dropdownChains = useMemo( const dropdownChains = useMemo(

Loading…
Cancel
Save