ci(release): publish latest release

parent 7c347018
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm` - CIDv0: `Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum`
- CIDv1: `bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y` - CIDv1: `bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,42 +10,10 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,42 +10,10 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.dweb.link/ - https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.dweb.link/
- https://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.cf-ipfs.com/ - https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.cf-ipfs.com/
- [ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/](ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/) - [ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/](ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/)
## 5.59.0 (2024-11-20) ### 5.59.1 (2024-11-20)
### Features
* **web:** add hide button to chain connectivity warning (#13795) 48e7521
* **web:** add max content to liq modals and propagate padding and gap to bottom sheet (#13806) 1991803
* **web:** clear selected limit orders after cancellation (#13808) 084120b
* **web:** mweb responsive liq position cards (#13825) 8757ff6
* **web:** mweb support for pool creation page (#13823) 9c82fec
* **web:** navigate to positions page after migrating liq (#13802) e60979a
* **web:** tweaks to top pools cards (#13824) c2628e0
* **web:** update shadow prop medium and light for interface (#13819) ad78fc4
* **web:** watch swap, send, bridge, wrap txs (#13807) 523abbd
### Bug Fixes
* **web:** [v4] wrap disconnected welcome text (#13791) dba8373
* **web:** broken charts on PDP (#13809) 5ba405f
* **web:** Fix buy crypto form e2e tests and nft tab nav test (#13790) 44b02ae
* **web:** fix overflow in unconnected menu [staging] (#13938) 9e46347
* **web:** Fix regression in TDP swap component navigation on web (#13779) 3f107e5
* **web:** handle edit text on small screens (#13800) 8a796fa
* **web:** only show warning on invalid price or range (#13805) 1c32c37
* **web:** pool tab zindex was too damn high (#13792) 7d01a6a
* **web:** set max height for advanced info icon (#13801) 4aea7f0
* **web:** uniswapx tests - increase hardhat funding (#13820) 7a43cff
### Continuous Integration
* **web:** update sitemaps 2c6b2bc
web/5.59.0 web/5.59.1
\ No newline at end of file \ No newline at end of file
...@@ -139,7 +139,7 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set< ...@@ -139,7 +139,7 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
// All txs besides FOR at least use gas so check for update of gas token // All txs besides FOR at least use gas so check for update of gas token
currenciesWithBalToUpdate.add(buildNativeCurrencyId(txChainId)) currenciesWithBalToUpdate.add(buildNativeCurrencyId(txChainId))
switch (transaction.typeInfo.type) { switch (transaction.typeInfo?.type) {
case TransactionType.Swap: case TransactionType.Swap:
case TransactionType.Bridge: case TransactionType.Bridge:
currenciesWithBalToUpdate.add(transaction.typeInfo.inputCurrencyId.toLowerCase()) currenciesWithBalToUpdate.add(transaction.typeInfo.inputCurrencyId.toLowerCase())
...@@ -157,6 +157,11 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set< ...@@ -157,6 +157,11 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
buildCurrencyId(txChainId, transaction.typeInfo.destinationTokenAddress).toLowerCase(), buildCurrencyId(txChainId, transaction.typeInfo.destinationTokenAddress).toLowerCase(),
) )
break break
default:
logger.info('refetchGQLQueriesSaga', 'getCurrenciesWithExpectedUpdates', 'Unhandled transaction type', {
transaction,
})
break
} }
return currenciesWithBalToUpdate return currenciesWithBalToUpdate
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment