Skip to content

Commit 993a9c6

Browse files
ci(release): publish latest release
1 parent ada702d commit 993a9c6

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

Diff for: RELEASE

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2`
3-
- CIDv1: `bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4`
2+
- CIDv0: `QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv`
3+
- CIDv1: `bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4.ipfs.dweb.link/
14-
- https://bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4.ipfs.cf-ipfs.com/
15-
- [ipfs://QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2/](ipfs://QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2/)
13+
- https://bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre.ipfs.dweb.link/
14+
- https://bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre.ipfs.cf-ipfs.com/
15+
- [ipfs://QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv/](ipfs://QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv/)
1616

17-
### 5.53.1 (2024-10-16)
17+
### 5.53.2 (2024-10-16)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** fix network filter on explore (#13057) fe9283d
22+
* **web:** Only poll for bridging status updates if pending txs - prod (#13069) 694cac0
2323

2424

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.53.1
1+
web/5.53.2

Diff for: apps/web/src/state/activity/polling/bridge.ts

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ export function usePollPendingBridgeTransactions(onActivityUpdate: OnActivityUpd
9898
let timeoutId: NodeJS.Timeout
9999

100100
const poll = async () => {
101+
// Do not poll if there are no pending bridge transactions
102+
if (!pendingDepositedBridgeTransactions.length) {
103+
return
104+
}
101105
if (attempts >= 10) {
102106
logger.error(new Error('Max attempts reached polling for bridge txs, giving up'), {
103107
tags: {

0 commit comments

Comments
 (0)