@@ -25,11 +25,9 @@ import { ArrowContainer, ArrowWrapper, OutputSwapSection, SwapSection } from 'co
25
25
import { CHAIN_INFO , useIsSupportedChainId } from 'constants/chains'
26
26
import { useIsSwapUnsupported } from 'hooks/useIsSwapUnsupported'
27
27
import { useMaxAmountIn } from 'hooks/useMaxAmountIn'
28
- import useParsedQueryString from 'hooks/useParsedQueryString'
29
28
import usePermit2Allowance , { AllowanceState } from 'hooks/usePermit2Allowance'
30
29
import usePrevious from 'hooks/usePrevious'
31
30
import { SwapResult , useSwapCallback } from 'hooks/useSwapCallback'
32
- import { useSwitchChain } from 'hooks/useSwitchChain'
33
31
import { useUSDPrice } from 'hooks/useUSDPrice'
34
32
import useWrapCallback , { WrapErrorText , WrapType } from 'hooks/useWrapCallback'
35
33
import { Trans } from 'i18n'
@@ -42,12 +40,7 @@ import { Text } from 'rebass'
42
40
import { useAppSelector } from 'state/hooks'
43
41
import { InterfaceTrade , RouterPreference , TradeState } from 'state/routing/types'
44
42
import { isClassicTrade } from 'state/routing/utils'
45
- import {
46
- queryParametersToCurrencyState ,
47
- useSwapActionHandlers ,
48
- useSwapAndLimitContext ,
49
- useSwapContext ,
50
- } from 'state/swap/hooks'
43
+ import { useSwapActionHandlers , useSwapAndLimitContext , useSwapContext } from 'state/swap/hooks'
51
44
import { useTheme } from 'styled-components'
52
45
import { ExternalLink , ThemedText } from 'theme/components'
53
46
import { maybeLogFirstSwapAction } from 'tracing/swapFlowLoggers'
@@ -61,6 +54,7 @@ import { didUserReject } from 'utils/swapErrorToUserReadableMessage'
61
54
import Error from 'components/Icons/Error'
62
55
import Row from 'components/Row'
63
56
import { useCurrencyInfo } from 'hooks/Tokens'
57
+ import useSelectChain from 'hooks/useSelectChain'
64
58
import { CurrencyState } from 'state/swap/types'
65
59
import { SafetyLevel } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
66
60
import { CurrencyInfo } from 'uniswap/src/features/dataApi/types'
@@ -88,14 +82,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
88
82
const { typedValue, independentField } = swapState
89
83
90
84
// token warning stuff
91
- const parsedQs = useParsedQueryString ( )
92
- const prefilledCurrencies = useMemo ( ( ) => {
93
- return queryParametersToCurrencyState ( parsedQs )
94
- } , [ parsedQs ] )
95
-
96
- const prefilledInputCurrencyInfo = useCurrencyInfo ( prefilledCurrencies ?. inputCurrencyId , chainId )
97
- const prefilledOutputCurrencyInfo = useCurrencyInfo ( prefilledCurrencies ?. outputCurrencyId , chainId )
98
-
85
+ const prefilledInputCurrencyInfo = useCurrencyInfo ( prefilledState . inputCurrency )
86
+ const prefilledOutputCurrencyInfo = useCurrencyInfo ( prefilledState . outputCurrency )
99
87
const [ dismissTokenWarning , setDismissTokenWarning ] = useState < boolean > ( false )
100
88
const [ showPriceImpactModal , setShowPriceImpactModal ] = useState < boolean > ( false )
101
89
@@ -463,7 +451,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
463
451
)
464
452
465
453
const inputCurrency = currencies [ Field . INPUT ] ?? undefined
466
- const switchChain = useSwitchChain ( )
454
+ const selectChain = useSelectChain ( )
455
+
467
456
const switchingChain = useAppSelector ( ( state ) => state . wallets . switchingChain )
468
457
const targetChain = switchingChain ? switchingChain : undefined
469
458
const switchingChainIsSupported = useIsSupportedChainId ( targetChain )
@@ -474,8 +463,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
474
463
< >
475
464
< TokenSafetyModal
476
465
isOpen = { urlTokensNotInDefault . length > 0 && ! dismissTokenWarning }
477
- tokenAddress = { urlTokensNotInDefault [ 0 ] ?. address }
478
- secondTokenAddress = { urlTokensNotInDefault [ 1 ] ?. address }
466
+ token0 = { urlTokensNotInDefault [ 0 ] }
467
+ token1 = { urlTokensNotInDefault [ 1 ] }
479
468
onContinue = { handleConfirmTokenWarning }
480
469
onCancel = { handleDismissTokenWarning }
481
470
showCancel = { true }
@@ -624,7 +613,7 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
624
613
$borderRadius = "16px"
625
614
onClick = { async ( ) => {
626
615
try {
627
- await switchChain ( chainId )
616
+ await selectChain ( chainId )
628
617
} catch ( error ) {
629
618
if ( didUserReject ( error ) ) {
630
619
// Ignore error, which keeps the user on the previous chain.
0 commit comments