diff --git a/RELEASE b/RELEASE index f171884af29..34a2c3e5d90 100644 --- a/RELEASE +++ b/RELEASE @@ -1,6 +1,6 @@ IPFS hash of the deployment: -- CIDv0: `QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2` -- CIDv1: `bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4` +- CIDv0: `QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv` +- CIDv1: `bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre` The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). @@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. Your Uniswap settings are never remembered across different URLs. IPFS gateways: -- https://bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4.ipfs.dweb.link/ -- https://bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4.ipfs.cf-ipfs.com/ -- [ipfs://QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2/](ipfs://QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2/) +- https://bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre.ipfs.dweb.link/ +- https://bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre.ipfs.cf-ipfs.com/ +- [ipfs://QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv/](ipfs://QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv/) -### 5.53.1 (2024-10-16) +### 5.53.2 (2024-10-16) ### Bug Fixes -* **web:** fix network filter on explore (#13057) fe9283d +* **web:** Only poll for bridging status updates if pending txs - prod (#13069) 694cac0 diff --git a/VERSION b/VERSION index ddc95fff9c0..0c5dcba0f10 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -web/5.53.1 \ No newline at end of file +web/5.53.2 \ No newline at end of file diff --git a/apps/web/src/state/activity/polling/bridge.ts b/apps/web/src/state/activity/polling/bridge.ts index ae2b8952da4..cd376abdeed 100644 --- a/apps/web/src/state/activity/polling/bridge.ts +++ b/apps/web/src/state/activity/polling/bridge.ts @@ -98,6 +98,10 @@ export function usePollPendingBridgeTransactions(onActivityUpdate: OnActivityUpd let timeoutId: NodeJS.Timeout const poll = async () => { + // Do not poll if there are no pending bridge transactions + if (!pendingDepositedBridgeTransactions.length) { + return + } if (attempts >= 10) { logger.error(new Error('Max attempts reached polling for bridge txs, giving up'), { tags: {