File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
IPFS hash of the deployment:
2
- - CIDv0: `QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2 `
3
- - CIDv1: `bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4 `
2
+ - CIDv0: `QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy `
3
+ - CIDv1: `bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai `
4
4
5
5
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
6
6
@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
10
10
Your Uniswap settings are never remembered across different URLs.
11
11
12
12
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 /)
16
16
17
- ### 5.27.4 (2024-05-15)
17
+ ### 5.27.5 (2024-05-15)
18
18
19
19
20
20
### Bug Fixes
21
21
22
- * **web:** [prod] check client chain for undefined (#8216) 50cf939
22
+ * **web:** check for supported network on pools page - prod (#8226) 93d8a0f
23
23
24
24
Original file line number Diff line number Diff line change 1
- web/5.27.4
1
+ web/5.27.5
Original file line number Diff line number Diff line change 1
1
import { SUPPORTED_V2POOL_CHAIN_IDS , SUPPORTED_V2POOL_CHAIN_IDS_DEPRECATED } from 'constants/chains'
2
2
import { FeatureFlags } from 'uniswap/src/features/gating/flags'
3
3
import { useFeatureFlag } from 'uniswap/src/features/gating/hooks'
4
- import { useChainId } from 'wagmi'
4
+ import { useAccount } from 'wagmi'
5
5
6
6
export function useNetworkSupportsV2 ( ) {
7
- const chainId = useChainId ( )
7
+ const { chainId } = useAccount ( )
8
8
const isV2EverywhereEnabled = useFeatureFlag ( FeatureFlags . V2Everywhere )
9
9
10
10
return (
Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ function PositionPageContent() {
434
434
435
435
// flag for receiving WETH
436
436
const [ receiveWETH , setReceiveWETH ] = useState ( false )
437
- const nativeCurrency = useNativeCurrency ( chainId )
437
+ const nativeCurrency = useNativeCurrency ( supportedChain )
438
438
const nativeWrappedSymbol = nativeCurrency . wrapped . symbol
439
439
440
440
// get pool address from details returned
You can’t perform that action at this time.
0 commit comments