diff --git a/src/hooks/coreSDK/safeCoreSDK.ts b/src/hooks/coreSDK/safeCoreSDK.ts index 0d3e7244a5..e79a005939 100644 --- a/src/hooks/coreSDK/safeCoreSDK.ts +++ b/src/hooks/coreSDK/safeCoreSDK.ts @@ -81,15 +81,17 @@ export const initSafeSDK = async ({ const isL2SafeMasterCopy = masterCopy === safeL2Deployment?.networkAddresses[chainId] // Unknown deployment, which we do not want to support - if (!isL1SafeMasterCopy && !isL2SafeMasterCopy) { - return Promise.resolve(undefined) - } + // if (!isL1SafeMasterCopy && !isL2SafeMasterCopy) { + // return Promise.resolve(undefined) + // } } // Legacy Safe contracts - if (isLegacyVersion(safeVersion)) { - isL1SafeMasterCopy = true - } + // if (isLegacyVersion(safeVersion)) { + // isL1SafeMasterCopy = true + // } + + isL1SafeMasterCopy = false return Safe.create({ ethAdapter: createReadOnlyEthersAdapter(provider),