From 59201453f0f9d0c9a8263e2ea16c412902ad725e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaan=20Uzdo=C4=9Fan?= Date: Mon, 3 Jul 2023 18:05:58 +0200 Subject: [PATCH] Turn off support for Stratos. Fix Ganache in tests --- src/sourcify-chains.ts | 3 ++- test/chains/chain-tests.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/sourcify-chains.ts b/src/sourcify-chains.ts index c5bd4026c..04f1e259c 100644 --- a/src/sourcify-chains.ts +++ b/src/sourcify-chains.ts @@ -744,8 +744,9 @@ const sourcifyChainsExtensions: SourcifyChainsExtensionsObject = { txRegex: getBlockscoutRegex(), }, "2047": { + // Turned off support as RPCs are failing // Stratos Testnet - supported: true, + supported: false, monitored: false, contractFetchAddress: "https://web3-testnet-explorer.thestratos.org/" + BLOCKSCOUT_SUFFIX, diff --git a/test/chains/chain-tests.js b/test/chains/chain-tests.js index c8ab18bfa..d10b127d5 100644 --- a/test/chains/chain-tests.js +++ b/test/chains/chain-tests.js @@ -919,7 +919,7 @@ describe("Test Supported Chains", function () { const supportedChains = res.body.filter((chain) => chain.supported); const untestedChains = []; supportedChains.forEach((chain) => { - if (chain.chainId == 0) return; // Skip Localhost + if (chain.chainId == 1337 || chain.chainId == 31337) return; // Skip LOCAL_CHAINS: Ganache and Hardhat if (!testedChains.has(chain.chainId.toString())) { untestedChains.push(chain); }