From ba1f595aad6322d95602119dd82c840cda76680f Mon Sep 17 00:00:00 2001 From: apoorvlathey Date: Tue, 24 Jan 2023 04:10:54 +0530 Subject: [PATCH] remove networkInfo --- src/components/Body/networkInfo.ts | 53 ------------------------------ 1 file changed, 53 deletions(-) delete mode 100644 src/components/Body/networkInfo.ts diff --git a/src/components/Body/networkInfo.ts b/src/components/Body/networkInfo.ts deleted file mode 100644 index 0af32af..0000000 --- a/src/components/Body/networkInfo.ts +++ /dev/null @@ -1,53 +0,0 @@ -const networkInfo: { - chainID: number; - name: string; - rpc: string; -}[] = [ - { - chainID: 1, - name: "Ethereum Mainnet", - rpc: `https://mainnet.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - }, - { - chainID: 42161, - name: "Arbitrum One", - rpc: "https://arb1.arbitrum.io/rpc", - }, - { - chainID: 10, - name: "Optimism", - rpc: "https://mainnet.optimism.io", - }, - { - chainID: 137, - name: "Polygon", - rpc: "https://polygon-rpc.com", - }, - { - chainID: 56, - name: "Binance Smart Chain", - rpc: "https://bscrpc.com", - }, - { - chainID: 250, - name: "Fantom Opera", - rpc: "https://rpc.fantom.network", - }, - { - chainID: 43114, - name: "Avalanche", - rpc: "https://rpc.ankr.com/avalanche", - }, - { - chainID: 100, - name: "Gnosis", - rpc: "https://rpc.ankr.com/gnosis", - }, - { - chainID: 5, - name: "Goerli Testnet", - rpc: `https://goerli.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - }, -]; - -export default networkInfo;