Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow gnosis wallets on multiple chains #5077

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 21 additions & 9 deletions lib/gnosis/gnosis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export async function getSafesForAddress({ chainId, address }: GetSafesForAddres
serviceUrl: getChainById(chainId)?.gnosisUrl as string,
chainId,
address: checksumAddress
}).catch((error) => {
log.error(`Error getting gnosis safes for address ${address} on Mantle chain ${chainId}`, { error });
return { safes: [] };
});

return Promise.all(
Expand All @@ -54,21 +57,30 @@ export async function getSafesForAddress({ chainId, address }: GetSafesForAddres
version: safeData.version
};
})
);
).catch((error) => {
log.error(`Error getting gnosis safes for address ${address} on Mantle chain ${chainId}`, { error });
return [];
});
} else {
const { supported } = isSupportedSafeApiChain(chainId);
if (supported) {
const rateLimiter = RateLimit(5);

const apiClient = await getSafeApiClient({ chainId });
return apiClient.getSafesByOwner(checksumAddress).then((userSafesResponse) =>
Promise.all(
userSafesResponse.safes.map(async (safeAddr) => {
await rateLimiter();
return apiClient.getSafeInfo(safeAddr).then((info) => ({ ...info, chainId }));
})
return apiClient
.getSafesByOwner(checksumAddress)
.then((userSafesResponse) =>
Promise.all(
userSafesResponse.safes.map(async (safeAddr) => {
await rateLimiter();
return apiClient.getSafeInfo(safeAddr).then((info) => ({ ...info, chainId }));
})
)
)
);
.catch((error) => {
log.error(`Error getting gnosis safes for address ${address} on chain ${chainId}`, { error });
return [];
});
} else {
return [];
}
Expand All @@ -86,5 +98,5 @@ export async function getSafesForAddresses(addresses: string[], enableTestnets:
}

// de-dupe safes in case user has multiple addresses and they own the same safe
return uniqBy(userSafes, (safe) => safe.address);
return userSafes;
}
Loading