Skip to content

Commit 2c7635f

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

File tree

5 files changed

+37
-20
lines changed

5 files changed

+37
-20
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: `QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy`
3-
- CIDv1: `bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai`
2+
- CIDv0: `Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh`
3+
- CIDv1: `bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a`
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://bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai.ipfs.dweb.link/
14-
- https://bafybeidjiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai.ipfs.cf-ipfs.com/
15-
- [ipfs://QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy/](ipfs://QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy/)
13+
- https://bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a.ipfs.dweb.link/
14+
- https://bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a.ipfs.cf-ipfs.com/
15+
- [ipfs://Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh/](ipfs://Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh/)
1616

17-
### 5.27.5 (2024-05-15)
17+
### 5.27.6 (2024-05-16)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** check for supported network on pools page - prod (#8226) 93d8a0f
22+
* **web:** Allow viewing pool mgmt pages when disconnected - prod (#8248) f7cce8f
2323

2424

VERSION

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

apps/web/src/hooks/useContract.ts

+17-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { useWeb3React } from '@web3-react/core'
1818
import { sendAnalyticsEvent } from 'analytics'
1919
import { RPC_PROVIDERS } from 'constants/providers'
2020
import { WRAPPED_NATIVE_CURRENCY } from 'constants/tokens'
21+
import { useEthersProvider } from 'hooks/useEthersProvider'
2122
import { useEffect, useMemo } from 'react'
2223
import ARGENT_WALLET_DETECTOR_ABI from 'uniswap/src/abis/argent-wallet-detector.json'
2324
import EIP_2612 from 'uniswap/src/abis/eip_2612.json'
@@ -40,7 +41,7 @@ import { NonfungiblePositionManager, UniswapInterfaceMulticall } from 'uniswap/s
4041
import { V3Migrator } from 'uniswap/src/abis/types/v3/V3Migrator'
4142
import WETH_ABI from 'uniswap/src/abis/weth.json'
4243
import { getContract } from 'utilities/src/contracts/getContract'
43-
import { useChainId } from 'wagmi'
44+
import { useAccount, useChainId } from 'wagmi'
4445

4546
const { abi: IUniswapV2PairABI } = IUniswapV2PairJson
4647
const { abi: IUniswapV2Router02ABI } = IUniswapV2Router02Json
@@ -54,21 +55,31 @@ export function useContract<T extends Contract = Contract>(
5455
ABI: any,
5556
withSignerIfPossible = true
5657
): T | null {
57-
const { provider, account, chainId } = useWeb3React()
58+
const account = useAccount()
59+
const disconnectedChainId = useChainId()
60+
const provider = useEthersProvider()
5861

5962
return useMemo(() => {
60-
if (!addressOrAddressMap || !ABI || !provider || !chainId) return null
63+
if (!addressOrAddressMap || !ABI || !provider) return null
6164
let address: string | undefined
6265
if (typeof addressOrAddressMap === 'string') address = addressOrAddressMap
63-
else address = addressOrAddressMap[chainId]
66+
else address = addressOrAddressMap[account.chainId ?? disconnectedChainId]
6467
if (!address) return null
6568
try {
66-
return getContract(address, ABI, provider, withSignerIfPossible && account ? account : undefined)
69+
return getContract(address, ABI, provider, withSignerIfPossible && account.address ? account.address : undefined)
6770
} catch (error) {
6871
console.error('Failed to get contract', error)
6972
return null
7073
}
71-
}, [addressOrAddressMap, ABI, provider, chainId, withSignerIfPossible, account]) as T
74+
}, [
75+
addressOrAddressMap,
76+
ABI,
77+
provider,
78+
account.chainId,
79+
account.address,
80+
disconnectedChainId,
81+
withSignerIfPossible,
82+
]) as T
7283
}
7384

7485
function useMainnetContract<T extends Contract = Contract>(address: string | undefined, ABI: any): T | null {

apps/web/src/hooks/useEthersProvider.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Web3Provider } from '@ethersproject/providers'
22
import { useMemo } from 'react'
33
import type { Chain, Client, Transport } from 'viem'
4-
import { Config, useConnectorClient } from 'wagmi'
4+
import { Config, useClient, useConnectorClient } from 'wagmi'
55

66
const providers = new WeakMap<Client, Web3Provider>()
77

@@ -28,14 +28,15 @@ function clientToProvider(client?: Client<Transport, Chain>, chainId?: number) {
2828
}
2929
}
3030

31-
/** Hook to convert a viem Client to an ethers.js Provider. */
31+
/** Hook to convert a viem Client to an ethers.js Provider with a default disconnected Network fallback. */
3232
export function useEthersProvider({ chainId }: { chainId?: number } = {}) {
3333
const { data: client } = useConnectorClient<Config>({ chainId })
34-
return useMemo(() => clientToProvider(client, chainId), [chainId, client])
34+
const disconnectedClient = useClient<Config>({ chainId })
35+
return useMemo(() => clientToProvider(client ?? disconnectedClient, chainId), [chainId, client, disconnectedClient])
3536
}
3637

37-
/** Hook to convert a viem Client to an ethers.js Provider. */
38+
/** Hook to convert a connected viem Client to an ethers.js Provider. */
3839
export function useEthersWeb3Provider({ chainId }: { chainId?: number } = {}) {
39-
const provider = useEthersProvider({ chainId })
40-
return useMemo(() => (provider instanceof Web3Provider ? provider : undefined), [provider])
40+
const { data: client } = useConnectorClient<Config>({ chainId })
41+
return useMemo(() => clientToProvider(client, chainId), [chainId, client])
4142
}

apps/web/src/state/swap/SwapContext.test.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ import { useSwapAndLimitContext, useSwapContext } from 'state/swap/hooks'
77
import { SwapAndLimitContext, SwapInfo } from 'state/swap/types'
88
import { SwapAndLimitContextProvider, SwapContextProvider } from './SwapContext'
99

10+
jest.mock('hooks/useContract', () => ({
11+
...jest.requireActual('hooks/useContract'),
12+
useContract: jest.fn(),
13+
}))
14+
1015
describe('Swap Context', () => {
1116
test('should use context', () => {
1217
let swapContext

0 commit comments

Comments
 (0)