Skip to content

Commit

Permalink
Fix getting fallback handler
Browse files Browse the repository at this point in the history
  • Loading branch information
mudrila committed Feb 26, 2024
1 parent 38cdabb commit 50339dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/NetworkConfig/networks/polygon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const polygonConfig: NetworkConfig = {
fallbackHandler: getCompatibilityFallbackHandlerDeployment({
version: SAFE_VERSION,
network: CHAIN_ID.toString(),
})?.defaultAddress!,
})?.networkAddresses[CHAIN_ID.toString()]!,
safe: getSafeL2SingletonDeployment({ version: SAFE_VERSION, network: CHAIN_ID.toString() })
?.defaultAddress!,
safeFactory: getProxyFactoryDeployment({
Expand Down
2 changes: 1 addition & 1 deletion src/providers/NetworkConfig/networks/sepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const sepoliaConfig: NetworkConfig = {
fallbackHandler: getCompatibilityFallbackHandlerDeployment({
version: SAFE_VERSION,
network: CHAIN_ID.toString(),
})?.defaultAddress!,
})?.networkAddresses[CHAIN_ID.toString()]!,
safe: getSafeL2SingletonDeployment({ version: SAFE_VERSION, network: CHAIN_ID.toString() })
?.defaultAddress!,
safeFactory: getProxyFactoryDeployment({
Expand Down

0 comments on commit 50339dc

Please sign in to comment.