We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f928274 commit 8cade27Copy full SHA for 8cade27
test/integration/SymbioticCoreConstants.sol
@@ -22,6 +22,10 @@ library SymbioticCoreConstants {
22
ISymbioticVaultConfigurator vaultConfigurator;
23
}
24
25
+ function coreSupported() internal view returns (bool) {
26
+ return block.chainid == 1 || block.chainid == 17_000 || block.chainid == 11_155_111 || block.chainid == 560_048;
27
+ }
28
+
29
function core() internal view returns (Core memory) {
30
if (block.chainid == 1) {
31
// mainnet
0 commit comments