remove networkInfo

This commit is contained in:
apoorvlathey
2023-01-24 04:10:54 +05:30
parent 08a56b20f0
commit ba1f595aad

View File

@@ -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;