From 826b03d1c5fc3662b63b59acc7b2ea4bba00dae1 Mon Sep 17 00:00:00 2001 From: cryptickoan Date: Thu, 21 Apr 2022 15:32:10 -0600 Subject: [PATCH] Hardhat removed --- src/esm/utils/networks.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/esm/utils/networks.js b/src/esm/utils/networks.js index bfe6ead8..56164735 100644 --- a/src/esm/utils/networks.js +++ b/src/esm/utils/networks.js @@ -80,16 +80,16 @@ export const chainMetadata = { rpcUrl: "https://mainnet.optimism.io/", blockExplorerURL: "https://optimistic.etherscan.io", color: "#FE0521", - }, - [ChainID.HARDHAT]: { - chainId: ChainID.HARDHAT, - name: "Hardhat", - imageUrl: "/static/networks/optimism.svg", // no logo - supported: true, - rpcUrl: "http://localhost:8545", - blockExplorerURL: "", - color: "#BC6C6C" } + // [ChainID.HARDHAT]: { + // chainId: ChainID.HARDHAT, + // name: "Hardhat", + // imageUrl: "/static/networks/optimism.svg", // no logo + // supported: true, + // rpcUrl: "http://localhost:8545", + // blockExplorerURL: "", + // color: "#BC6C6C" + // } }; export const isSupportedChainId = (chainId) => Object.values(ChainID).includes(chainId); export function getSupportedChains() {