Skip to content

Commit 764fb94

Browse files
ci(release): publish latest release
1 parent a50127e commit 764fb94

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

RELEASE

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2`
3-
- CIDv1: `bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4`
2+
- CIDv0: `QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy`
3+
- CIDv1: `bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai`
44

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

@@ -10,15 +10,15 @@ 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://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.dweb.link/
14-
- https://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.cf-ipfs.com/
15-
- [ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/](ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/)
13+
- https://bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai.ipfs.dweb.link/
14+
- https://bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai.ipfs.cf-ipfs.com/
15+
- [ipfs://QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy/](ipfs://QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy/)
1616

17-
### 5.27.4 (2024-05-15)
17+
### 5.27.5 (2024-05-15)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** [prod] check client chain for undefined (#8216) 50cf939
22+
* **web:** check for supported network on pools page - prod (#8226) 93d8a0f
2323

2424

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.27.4
1+
web/5.27.5

apps/web/src/hooks/useNetworkSupportsV2.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { SUPPORTED_V2POOL_CHAIN_IDS, SUPPORTED_V2POOL_CHAIN_IDS_DEPRECATED } from 'constants/chains'
22
import { FeatureFlags } from 'uniswap/src/features/gating/flags'
33
import { useFeatureFlag } from 'uniswap/src/features/gating/hooks'
4-
import { useChainId } from 'wagmi'
4+
import { useAccount } from 'wagmi'
55

66
export function useNetworkSupportsV2() {
7-
const chainId = useChainId()
7+
const { chainId } = useAccount()
88
const isV2EverywhereEnabled = useFeatureFlag(FeatureFlags.V2Everywhere)
99

1010
return (

apps/web/src/pages/Pool/PositionPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ function PositionPageContent() {
434434

435435
// flag for receiving WETH
436436
const [receiveWETH, setReceiveWETH] = useState(false)
437-
const nativeCurrency = useNativeCurrency(chainId)
437+
const nativeCurrency = useNativeCurrency(supportedChain)
438438
const nativeWrappedSymbol = nativeCurrency.wrapped.symbol
439439

440440
// get pool address from details returned

0 commit comments

Comments
 (0)