Skip to content

Commit cdc2660

Browse files
ci(release): publish latest release
1 parent 7c34701 commit cdc2660

File tree

3 files changed

+13
-40
lines changed

3 files changed

+13
-40
lines changed

RELEASE

Lines changed: 6 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm`
3-
- CIDv1: `bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y`
2+
- CIDv0: `Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum`
3+
- CIDv1: `bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa`
44

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

@@ -10,42 +10,10 @@ 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://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.dweb.link/
14-
- https://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.cf-ipfs.com/
15-
- [ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/](ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/)
13+
- https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.dweb.link/
14+
- https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.cf-ipfs.com/
15+
- [ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/](ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/)
1616

17-
## 5.59.0 (2024-11-20)
18-
19-
20-
### Features
21-
22-
* **web:** add hide button to chain connectivity warning (#13795) 48e7521
23-
* **web:** add max content to liq modals and propagate padding and gap to bottom sheet (#13806) 1991803
24-
* **web:** clear selected limit orders after cancellation (#13808) 084120b
25-
* **web:** mweb responsive liq position cards (#13825) 8757ff6
26-
* **web:** mweb support for pool creation page (#13823) 9c82fec
27-
* **web:** navigate to positions page after migrating liq (#13802) e60979a
28-
* **web:** tweaks to top pools cards (#13824) c2628e0
29-
* **web:** update shadow prop medium and light for interface (#13819) ad78fc4
30-
* **web:** watch swap, send, bridge, wrap txs (#13807) 523abbd
31-
32-
33-
### Bug Fixes
34-
35-
* **web:** [v4] wrap disconnected welcome text (#13791) dba8373
36-
* **web:** broken charts on PDP (#13809) 5ba405f
37-
* **web:** Fix buy crypto form e2e tests and nft tab nav test (#13790) 44b02ae
38-
* **web:** fix overflow in unconnected menu [staging] (#13938) 9e46347
39-
* **web:** Fix regression in TDP swap component navigation on web (#13779) 3f107e5
40-
* **web:** handle edit text on small screens (#13800) 8a796fa
41-
* **web:** only show warning on invalid price or range (#13805) 1c32c37
42-
* **web:** pool tab zindex was too damn high (#13792) 7d01a6a
43-
* **web:** set max height for advanced info icon (#13801) 4aea7f0
44-
* **web:** uniswapx tests - increase hardhat funding (#13820) 7a43cff
45-
46-
47-
### Continuous Integration
48-
49-
* **web:** update sitemaps 2c6b2bc
17+
### 5.59.1 (2024-11-20)
5018

5119

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.59.0
1+
web/5.59.1

packages/uniswap/src/features/transactions/refetchGQLQueriesSaga.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
139139
// All txs besides FOR at least use gas so check for update of gas token
140140
currenciesWithBalToUpdate.add(buildNativeCurrencyId(txChainId))
141141

142-
switch (transaction.typeInfo.type) {
142+
switch (transaction.typeInfo?.type) {
143143
case TransactionType.Swap:
144144
case TransactionType.Bridge:
145145
currenciesWithBalToUpdate.add(transaction.typeInfo.inputCurrencyId.toLowerCase())
@@ -157,6 +157,11 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
157157
buildCurrencyId(txChainId, transaction.typeInfo.destinationTokenAddress).toLowerCase(),
158158
)
159159
break
160+
default:
161+
logger.info('refetchGQLQueriesSaga', 'getCurrenciesWithExpectedUpdates', 'Unhandled transaction type', {
162+
transaction,
163+
})
164+
break
160165
}
161166

162167
return currenciesWithBalToUpdate

0 commit comments

Comments
 (0)