Skip to content

Commit

Permalink
Turn off support for Stratos. Fix Ganache in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Jul 3, 2023
1 parent 42828a3 commit 5920145
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/sourcify-chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test/chains/chain-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 5920145

Please sign in to comment.