ci(release): publish latest release

parent f5bd2144
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t` - CIDv0: `QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF`
- CIDv1: `bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu` - CIDv1: `bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa`
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,54 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,54 +10,15 @@ 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://bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu.ipfs.dweb.link/ - https://bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa.ipfs.dweb.link/
- https://bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu.ipfs.cf-ipfs.com/ - https://bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa.ipfs.cf-ipfs.com/
- [ipfs://Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t/](ipfs://Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t/) - [ipfs://QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF/](ipfs://QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF/)
## 5.49.0 (2024-10-01)
### Features
* **web:** [1/2] fee tier selection modal (#12092) fa1f56d
* **web:** [2/2] fee tier selection modal (create new) (#12110) 780bbc0
* **web:** add fee tier and price range selection to migrate page (#12064) f417a3f
* **web:** add fiat values props to swap logs in new saga (#12215) 857119c
* **web:** add price impact events (#12208) 30b8c39
* **web:** add total_balances_usd prop to swap logs in new saga (#12173) 79a0b17
* **web:** add UniswapX priority orders in swap flow (#12088) d55a9bd
* **web:** add uniswapx saga to shared web flow (#11973) d10498e
* **web:** add url param to create positions page (#12212) b89e5d1
* **web:** add wrap saga for shared flow (#11971) f14a41a
* **web:** adding multiple protocols to create page (#12132) b4bff49
* **web:** changing create page based on version (#12136) bc16817
* **web:** classic swap saga (#11922) f74c332
* **web:** keep input to all networks unless output selected (#12274) e43b95d
* **web:** log SWAP_MODIFIED_IN_WALLET event in new swap saga (#12247) 16e9f56
* **web:** log SWAP_SIGNED event in new swag saga (#12170) 2494b9d
* **web:** log UniswapXOrderPostError and UniswapXSignatureRequested in new saga (#12114) 454666b
* **web:** log UniswapXOrderSubmitted in new saga (#12113) 9ae3373
* **web:** pulling from backend for create page (#12143) 8f6aa1e
* **web:** swap saga notifications (#12070) e28ec03
* **web:** v2 position page refreshed (#11972) da6c705
* **web:** v4 Position detail page (#11904) a735564
### 5.49.1 (2024-10-01)
### Bug Fixes
* **web:** fix AddressQRModal eyeSize (#12318) 33f8160
* **web:** fix language file mapping (#12207) bbfe66d
* **web:** fix overflow issue in search results (#12158) fbd7358
* **web:** limit form button color should be neutralContrast (#12416) d923cdd
* **web:** shared swap landing page (#12026) fe2d0b6
* **web:** token caching fix in mini portfolio (#12149) 4c2d402
* **web:** token selector height (#12028) 3adb0d0
* **web:** use percentFromFloat (#12142) 18f819b
* **web:** use swap saga prefilled state (#12082) c6bd810
### Bug Fixes
### Continuous Integration * **web:** priority orders only enabled on base (#12438) c44ffba
* **web:** update sitemaps d8b4a5a
web/5.49.0 web/5.49.1
\ No newline at end of file \ No newline at end of file
...@@ -67,7 +67,8 @@ export function useRoutingAPIArguments({ ...@@ -67,7 +67,8 @@ export function useRoutingAPIArguments({
const chainId = tokenIn?.chainId const chainId = tokenIn?.chainId
const isUniswapXSupportedChain = useIsUniswapXSupportedChain(chainId) const isUniswapXSupportedChain = useIsUniswapXSupportedChain(chainId)
const isPriorityOrder = isPriorityOrdersEnabled && routerPreference === RouterPreference.X && isUniswapXSupportedChain const isPriorityOrder =
routerPreference === RouterPreference.X && isPriorityOrdersEnabled && chainId === UniverseChainId.Base // UniswapX priority orders are only available on Base for now
return useMemo( return useMemo(
() => () =>
......
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