Skip to content

Commit

Permalink
omit additional networks
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka committed Jul 17, 2023
1 parent 0cad32a commit 822fa6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ And that has made all the difference.
}, [chainId])

// networks list, filtered and sorted
const omitNetworks = [4, 31337, 31338, 1313161554, 1313161556]
const omitNetworks = [ChainId.RINKEBY, ChainId.HARDHAT, ChainId.HARDHAT_2, ChainId.KOVAN, ChainId.FANTOM_TESTNET, ChainId.ROPSTEN, ChainId.AURORA, ChainId.AURORA_TESTNET]
const networks = Object.values(sequence.network.networks)
.filter(val => (omitNetworks.indexOf(val.chainId) < 0))
.sort((a, b) => a.title > b.title ? 1 : -1)
Expand Down

0 comments on commit 822fa6d

Please sign in to comment.