Skip to content

Commit

Permalink
better scroll support
Browse files Browse the repository at this point in the history
  • Loading branch information
marczeller committed Aug 18, 2024
1 parent ba0610d commit ad69f1a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions script/FetchReserves.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ contract FetchReservesScript is Script {
}

function getNetworkConfigs() internal pure returns (NetworkConfig[] memory) {
NetworkConfig[] memory configs = new NetworkConfig[](9);
NetworkConfig[] memory configs = new NetworkConfig[](10);

string[] memory mainnetPools = new string[](2);
mainnetPools[0] = "MAIN";
Expand All @@ -95,10 +95,11 @@ contract FetchReservesScript is Script {
configs[2] = NetworkConfig("OPTIMISM", singlePool);
configs[3] = NetworkConfig("POLYGON", singlePool);
configs[4] = NetworkConfig("ARBITRUM", singlePool);
configs[5] = NetworkConfig("METIS", singlePool);
configs[6] = NetworkConfig("BASE", singlePool);
configs[7] = NetworkConfig("GNOSIS", singlePool);
configs[8] = NetworkConfig("BNB", singlePool);
configs[5] = NetworkConfig("BASE", singlePool);
configs[6] = NetworkConfig("GNOSIS", singlePool);
configs[7] = NetworkConfig("BNB", singlePool);
configs[8] = NetworkConfig("SCROLL", singlePool);
configs[9] = NetworkConfig("METIS", singlePool);

return configs;
}
Expand Down

0 comments on commit ad69f1a

Please sign in to comment.