@@ -18,6 +18,7 @@ import { useWeb3React } from '@web3-react/core'
18
18
import { sendAnalyticsEvent } from 'analytics'
19
19
import { RPC_PROVIDERS } from 'constants/providers'
20
20
import { WRAPPED_NATIVE_CURRENCY } from 'constants/tokens'
21
+ import { useEthersProvider } from 'hooks/useEthersProvider'
21
22
import { useEffect , useMemo } from 'react'
22
23
import ARGENT_WALLET_DETECTOR_ABI from 'uniswap/src/abis/argent-wallet-detector.json'
23
24
import EIP_2612 from 'uniswap/src/abis/eip_2612.json'
@@ -40,7 +41,7 @@ import { NonfungiblePositionManager, UniswapInterfaceMulticall } from 'uniswap/s
40
41
import { V3Migrator } from 'uniswap/src/abis/types/v3/V3Migrator'
41
42
import WETH_ABI from 'uniswap/src/abis/weth.json'
42
43
import { getContract } from 'utilities/src/contracts/getContract'
43
- import { useChainId } from 'wagmi'
44
+ import { useAccount , useChainId } from 'wagmi'
44
45
45
46
const { abi : IUniswapV2PairABI } = IUniswapV2PairJson
46
47
const { abi : IUniswapV2Router02ABI } = IUniswapV2Router02Json
@@ -54,21 +55,31 @@ export function useContract<T extends Contract = Contract>(
54
55
ABI : any ,
55
56
withSignerIfPossible = true
56
57
) : T | null {
57
- const { provider, account, chainId } = useWeb3React ( )
58
+ const account = useAccount ( )
59
+ const disconnectedChainId = useChainId ( )
60
+ const provider = useEthersProvider ( )
58
61
59
62
return useMemo ( ( ) => {
60
- if ( ! addressOrAddressMap || ! ABI || ! provider || ! chainId ) return null
63
+ if ( ! addressOrAddressMap || ! ABI || ! provider ) return null
61
64
let address : string | undefined
62
65
if ( typeof addressOrAddressMap === 'string' ) address = addressOrAddressMap
63
- else address = addressOrAddressMap [ chainId ]
66
+ else address = addressOrAddressMap [ account . chainId ?? disconnectedChainId ]
64
67
if ( ! address ) return null
65
68
try {
66
- return getContract ( address , ABI , provider , withSignerIfPossible && account ? account : undefined )
69
+ return getContract ( address , ABI , provider , withSignerIfPossible && account . address ? account . address : undefined )
67
70
} catch ( error ) {
68
71
console . error ( 'Failed to get contract' , error )
69
72
return null
70
73
}
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
72
83
}
73
84
74
85
function useMainnetContract < T extends Contract = Contract > ( address : string | undefined , ABI : any ) : T | null {
0 commit comments