Skip to content

Commit 84c8fa5

Browse files
ci(release): publish latest release
1 parent fb4b9f7 commit 84c8fa5

File tree

3 files changed

+11
-58
lines changed

3 files changed

+11
-58
lines changed

RELEASE

Lines changed: 6 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmZ1bV2GELY9nMg3DBadANd68MuUTJy9A9rU8LoySetMXm`
3-
- CIDv1: `bafybeie6r3p2nalk3ahef7qkknt6ddaisbvqikuyhfbpehzusabqgvmbwa`
2+
- CIDv0: `QmPJ67xPvHcYEk5YWu59uGkE5Mv6QBSSTWwzBTy72Eoeo4`
3+
- CIDv1: `bafybeiaogowvdnmwgmzi4yqbtzsn27ej4xhanmrcacyu2ejjwuyc4apwym`
44

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

@@ -10,61 +10,14 @@ 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://bafybeie6r3p2nalk3ahef7qkknt6ddaisbvqikuyhfbpehzusabqgvmbwa.ipfs.dweb.link/
14-
- [ipfs://QmZ1bV2GELY9nMg3DBadANd68MuUTJy9A9rU8LoySetMXm/](ipfs://QmZ1bV2GELY9nMg3DBadANd68MuUTJy9A9rU8LoySetMXm/)
13+
- https://bafybeiaogowvdnmwgmzi4yqbtzsn27ej4xhanmrcacyu2ejjwuyc4apwym.ipfs.dweb.link/
14+
- [ipfs://QmPJ67xPvHcYEk5YWu59uGkE5Mv6QBSSTWwzBTy72Eoeo4/](ipfs://QmPJ67xPvHcYEk5YWu59uGkE5Mv6QBSSTWwzBTy72Eoeo4/)
1515

16-
## 5.80.0 (2025-04-23)
17-
18-
19-
### Features
20-
21-
* **web:** [EW] Add Download Wallet Header to Connect Modal (#18295) 3dc6b22
22-
* **web:** [EW] setup deeplink to passkey mgmt modal (#18231) 5f0eadc
23-
* **web:** add loading state to passkey mgmt (#18554) c561013
24-
* **web:** add token carousel header (#18319) 2ff8d5c
25-
* **web:** clean up the sign up modals (#18271) f7cc410
26-
* **web:** default sell experience for TDP from MiniPort (#17805) dc6f91c
27-
* **web:** delete ApplicationModal enum, use ModalName enum (#18055) 2e73a78
28-
* **web:** explicitly define buffer import (#18451) 59ad348
29-
* **web:** lp incentives phase one update staging (#18766) 13cc540
30-
* **web:** Only show EW Sign In Modal if EW was Recent Connector (#18549) d0ee8cc
31-
* **web:** open sidebar when wallet is created (#18489) 42d7946
32-
* **web:** use new contextmenu in .web (#17810) 63760c5
33-
* **web:** use publicClient for getting tx receipt (#18574) 82da74f
34-
* **web:** use sporified DropdownMenuSheetItem in web&native ContextMenus (#17519) 7b8aa1c
16+
### 5.80.1 (2025-04-23)
3517

3618

3719
### Bug Fixes
3820

39-
* **web:** [lp] preserve currency input state in create step 1 (#18441) 31f0fd5
40-
* **web:** [usePools] handle invalid vs non-existent pools (#18608) 396a787
41-
* **web:** add web3modal to csp to fix wallet connect error (#18705) 8af61a6
42-
* **web:** app store images compress staging (#18647) d942ac7
43-
* **web:** dynamic config overrides - set value to a single value when allowMultiple=false (#18328) f733d10
44-
* **web:** fix bad merge - remove duplicate EW feature flag (#18394) eeedb85
45-
* **web:** fix create liquidity chart deux (#18337) 47cc380
46-
* **web:** fix safari dropdown (#18475) c1c0544
47-
* **web:** fixing arb v3 (#18421) a220a0d
48-
* **web:** pass chainId to useReadContracts (#18665) fec2585
49-
* **web:** remove v4 0 slippage (#18599) 2dc6dc7
50-
* **web:** update modals during onboarding flow (#18418) 99bfe9d
51-
* **web:** update the logic for is connected to extension (#18457) ff75de8
52-
* **web:** v4 0 slippage at max (#18583) 9131be0
53-
54-
55-
### Continuous Integration
56-
57-
* **web:** update sitemaps 17fee92
58-
59-
60-
### Code Refactoring
61-
62-
* **web:** hook new dialog comp into dynamic fee tier speedbump modal (#18517) a6ca1fe
63-
64-
65-
### Tests
66-
67-
* **web:** [lp] create lp (#18417) 49e63bb
68-
* **web:** use development for dev feature flags in test runs (#18437) d979904
21+
* **web:** uninitialized v2 pools (#18808) 551de59
6922

7023

VERSION

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

apps/web/src/hooks/useV2Pairs.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,17 @@ export function useV2Pairs(currencies: [Currency | undefined, Currency | undefin
7979

8080
return (
8181
data?.map(({ result }, i) => {
82-
if (!result) {
83-
return [PairState.INVALID, null]
84-
}
85-
8682
const tokenA = tokens[i][0]
8783
const tokenB = tokens[i][1]
8884

8985
if (!tokenA || !tokenB || tokenA.equals(tokenB)) {
9086
return [PairState.INVALID, null]
9187
}
9288

89+
if (!result) {
90+
return [PairState.NOT_EXISTS, null]
91+
}
92+
9393
const [reserve0, reserve1] = result
9494
const [token0, token1] = tokenA.sortsBefore(tokenB) ? [tokenA, tokenB] : [tokenB, tokenA]
9595

0 commit comments

Comments
 (0)