File tree 3 files changed +12
-8
lines changed
apps/web/src/state/activity/polling
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
1
IPFS hash of the deployment:
2
- - CIDv0: `QmRaVjDqEutARKcor6EcFLKR1cx2VD5UqAidr4JTb1z4A2 `
3
- - CIDv1: `bafybeibqd4ezvubo2zwfmqxuw4kfi6g7tzrtrqdps3lyvvwdhmld4lrvt4 `
2
+ - CIDv0: `QmRCNHQbxqepJmwKTbTjue67sfn3LqusjoTaeJ1WsBUzmv `
3
+ - CIDv1: `bafybeibkoplw7hlmdmxl7shx3c7w47twsz42qpmm3bss54r2wdk5mvyrre `
4
4
5
5
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
6
6
@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
10
10
Your Uniswap settings are never remembered across different URLs.
11
11
12
12
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 /)
16
16
17
- ### 5.53.1 (2024-10-16)
17
+ ### 5.53.2 (2024-10-16)
18
18
19
19
20
20
### Bug Fixes
21
21
22
- * **web:** fix network filter on explore (#13057) fe9283d
22
+ * **web:** Only poll for bridging status updates if pending txs - prod (#13069) 694cac0
23
23
24
24
Original file line number Diff line number Diff line change 1
- web/5.53.1
1
+ web/5.53.2
Original file line number Diff line number Diff line change @@ -98,6 +98,10 @@ export function usePollPendingBridgeTransactions(onActivityUpdate: OnActivityUpd
98
98
let timeoutId : NodeJS . Timeout
99
99
100
100
const poll = async ( ) => {
101
+ // Do not poll if there are no pending bridge transactions
102
+ if ( ! pendingDepositedBridgeTransactions . length ) {
103
+ return
104
+ }
101
105
if ( attempts >= 10 ) {
102
106
logger . error ( new Error ( 'Max attempts reached polling for bridge txs, giving up' ) , {
103
107
tags : {
You can’t perform that action at this time.
0 commit comments