Skip to content

Commit e79630c

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

File tree

11 files changed

+77
-82
lines changed

11 files changed

+77
-82
lines changed

RELEASE

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh`
3-
- CIDv1: `bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a`
2+
- CIDv0: `QmccrxuuPdXnhgCm2377DmcpBZtS36JK2kHNhGcutyYCfC`
3+
- CIDv1: `bafybeiguflcfu2p2lxehliz5wutxlmqtjfeg7qk4pw2ifw24xbbhjhcf5m`
44

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

@@ -10,15 +10,16 @@ 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://bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a.ipfs.dweb.link/
14-
- https://bafybeigetwjqz26or3og65klvf2oefze44ct4oukkncojpcb5wocbc6x7a.ipfs.cf-ipfs.com/
15-
- [ipfs://Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh/](ipfs://Qmba9yfwsUsVcbQA6CAkQCxqFCoLJapvjV7RQsp26zJvBh/)
13+
- https://bafybeiguflcfu2p2lxehliz5wutxlmqtjfeg7qk4pw2ifw24xbbhjhcf5m.ipfs.dweb.link/
14+
- https://bafybeiguflcfu2p2lxehliz5wutxlmqtjfeg7qk4pw2ifw24xbbhjhcf5m.ipfs.cf-ipfs.com/
15+
- [ipfs://QmccrxuuPdXnhgCm2377DmcpBZtS36JK2kHNhGcutyYCfC/](ipfs://QmccrxuuPdXnhgCm2377DmcpBZtS36JK2kHNhGcutyYCfC/)
1616

17-
### 5.27.6 (2024-05-16)
17+
### 5.27.7 (2024-05-16)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** Allow viewing pool mgmt pages when disconnected - prod (#8248) f7cce8f
22+
* **web:** support multichain input params 272661d
23+
* **web:** support multichain input params 8620c6c
2324

2425

VERSION

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

apps/web/src/components/SearchModal/CurrencySearchModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default memo(function CurrencySearchModal({
8989
if (warningToken) {
9090
content = (
9191
<TokenSafety
92-
tokenAddress={warningToken.address}
92+
token0={warningToken}
9393
onContinue={() => handleCurrencySelect(warningToken)}
9494
onCancel={() => setModalView(CurrencyModalView.search)}
9595
showCancel={true}

apps/web/src/components/TokenSafety/TokenSafetyModal.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ interface TokenSafetyModalProps extends TokenSafetyProps {
77

88
export default function TokenSafetyModal({
99
isOpen,
10-
tokenAddress,
11-
secondTokenAddress,
10+
token0,
11+
token1,
1212
onContinue,
1313
onCancel,
1414
onBlocked,
@@ -17,8 +17,8 @@ export default function TokenSafetyModal({
1717
return (
1818
<Modal isOpen={isOpen} onDismiss={onCancel}>
1919
<TokenSafety
20-
tokenAddress={tokenAddress}
21-
secondTokenAddress={secondTokenAddress}
20+
token0={token0}
21+
token1={token1}
2222
onContinue={onContinue}
2323
onBlocked={onBlocked}
2424
onCancel={onCancel}

apps/web/src/components/TokenSafety/index.tsx

+17-27
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
useTokenWarning,
1212
Warning,
1313
} from 'constants/tokenSafety'
14-
import { useToken } from 'hooks/Tokens'
1514
import { Trans } from 'i18n'
1615
import { ExternalLink as LinkIconFeather } from 'react-feather'
1716
import { Text } from 'rebass'
@@ -196,59 +195,50 @@ const StyledExternalLink = styled(ExternalLink)`
196195
`
197196

198197
export interface TokenSafetyProps {
199-
tokenAddress?: string
200-
secondTokenAddress?: string
198+
token0?: Token
199+
token1?: Token
201200
onContinue: () => void
202201
onCancel: () => void
203202
onBlocked?: () => void
204203
showCancel?: boolean
205204
}
206205

207-
export default function TokenSafety({
208-
tokenAddress,
209-
secondTokenAddress,
210-
onContinue,
211-
onCancel,
212-
onBlocked,
213-
showCancel,
214-
}: TokenSafetyProps) {
206+
export default function TokenSafety({ token0, token1, onContinue, onCancel, onBlocked, showCancel }: TokenSafetyProps) {
215207
const logos = []
216208
const urls = []
217209

218-
const token1 = useToken(tokenAddress)
219-
const token1Warning = useTokenWarning(tokenAddress, token1?.chainId)
220-
const token2 = useToken(secondTokenAddress)
221-
const token2Warning = useTokenWarning(secondTokenAddress, token2?.chainId)
210+
const token0Warning = useTokenWarning(token0?.address, token0?.chainId)
211+
const token1Warning = useTokenWarning(token1?.address, token1?.chainId)
222212

213+
const token0Unsupported = !token0Warning?.canProceed
223214
const token1Unsupported = !token1Warning?.canProceed
224-
const token2Unsupported = !token2Warning?.canProceed
225215

226216
// Logic for only showing the 'unsupported' warning if one is supported and other isn't
227-
if (token1 && token1Warning && (token1Unsupported || !(token2Warning && token2Unsupported))) {
217+
if (token0 && token0Warning && (token0Unsupported || !(token1Warning && token1Unsupported))) {
218+
logos.push(<CurrencyLogo key={token0.address} currency={token0} size={48} />)
219+
urls.push(<ExplorerView token={token0} />)
220+
}
221+
if (token1 && token1Warning && (token1Unsupported || !(token0Warning && token0Unsupported))) {
228222
logos.push(<CurrencyLogo key={token1.address} currency={token1} size={48} />)
229223
urls.push(<ExplorerView token={token1} />)
230224
}
231-
if (token2 && token2Warning && (token2Unsupported || !(token1Warning && token1Unsupported))) {
232-
logos.push(<CurrencyLogo key={token2.address} currency={token2} size={48} />)
233-
urls.push(<ExplorerView token={token2} />)
234-
}
235225

236226
const plural = logos.length > 1
237227
// Show higher level warning if two are present
238-
let displayWarning = token1Warning
239-
if (!token1Warning || (token2Warning && token2Unsupported && !token1Unsupported)) {
240-
displayWarning = token2Warning
228+
let displayWarning = token0Warning
229+
if (!token0Warning || (token1Warning && token1Unsupported && !token0Unsupported)) {
230+
displayWarning = token1Warning
241231
}
242232

243233
// If a warning is acknowledged, import these tokens
244234
const addToken = useAddUserToken()
245235
const acknowledge = () => {
236+
if (token0) {
237+
addToken(token0)
238+
}
246239
if (token1) {
247240
addToken(token1)
248241
}
249-
if (token2) {
250-
addToken(token2)
251-
}
252242
onContinue()
253243
}
254244

apps/web/src/components/Tokens/TokenDetails/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function TDPSwapComponent() {
148148
{warning && <TokenSafetyMessage tokenAddress={address} warning={warning} />}
149149
<TokenSafetyModal
150150
isOpen={openTokenSafetyModal || !!continueSwap}
151-
tokenAddress={address}
151+
token0={currency.isToken ? currency : undefined}
152152
onContinue={() => onResolveSwap(true)}
153153
onBlocked={() => {
154154
setOpenTokenSafetyModal(false)

apps/web/src/hooks/useSyncChainQuery.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function getChainIdFromName(name: string) {
1414
return chainId ? parseInt(chainId) : undefined
1515
}
1616

17-
function getParsedChainId(parsedQs?: ParsedQs) {
17+
export function getParsedChainId(parsedQs?: ParsedQs) {
1818
const chain = parsedQs?.chain
1919
if (!chain || typeof chain !== 'string') return
2020

@@ -44,8 +44,8 @@ export default function useSyncChainQuery() {
4444
const [searchParams, setSearchParams] = useSearchParams()
4545

4646
useEffect(() => {
47-
// Change a user's chain on pageload if the connected chainId does not match the query param chain
48-
if (isConnected && urlChainId && chainIdRef.current === chainId && chainId !== urlChainId) {
47+
// Change a page chain on pageload if the app chainId does not match the query param chain
48+
if (urlChainId && chainIdRef.current === chainId && chainId !== urlChainId) {
4949
selectChain(urlChainId)
5050
}
5151
// If a user has a connected wallet and has manually changed their chain, update the query parameter if it's supported

apps/web/src/pages/Swap/SwapForm.tsx

+9-20
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ import { ArrowContainer, ArrowWrapper, OutputSwapSection, SwapSection } from 'co
2525
import { CHAIN_INFO, useIsSupportedChainId } from 'constants/chains'
2626
import { useIsSwapUnsupported } from 'hooks/useIsSwapUnsupported'
2727
import { useMaxAmountIn } from 'hooks/useMaxAmountIn'
28-
import useParsedQueryString from 'hooks/useParsedQueryString'
2928
import usePermit2Allowance, { AllowanceState } from 'hooks/usePermit2Allowance'
3029
import usePrevious from 'hooks/usePrevious'
3130
import { SwapResult, useSwapCallback } from 'hooks/useSwapCallback'
32-
import { useSwitchChain } from 'hooks/useSwitchChain'
3331
import { useUSDPrice } from 'hooks/useUSDPrice'
3432
import useWrapCallback, { WrapErrorText, WrapType } from 'hooks/useWrapCallback'
3533
import { Trans } from 'i18n'
@@ -42,12 +40,7 @@ import { Text } from 'rebass'
4240
import { useAppSelector } from 'state/hooks'
4341
import { InterfaceTrade, RouterPreference, TradeState } from 'state/routing/types'
4442
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'
5144
import { useTheme } from 'styled-components'
5245
import { ExternalLink, ThemedText } from 'theme/components'
5346
import { maybeLogFirstSwapAction } from 'tracing/swapFlowLoggers'
@@ -61,6 +54,7 @@ import { didUserReject } from 'utils/swapErrorToUserReadableMessage'
6154
import Error from 'components/Icons/Error'
6255
import Row from 'components/Row'
6356
import { useCurrencyInfo } from 'hooks/Tokens'
57+
import useSelectChain from 'hooks/useSelectChain'
6458
import { CurrencyState } from 'state/swap/types'
6559
import { SafetyLevel } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
6660
import { CurrencyInfo } from 'uniswap/src/features/dataApi/types'
@@ -88,14 +82,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
8882
const { typedValue, independentField } = swapState
8983

9084
// 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)
9987
const [dismissTokenWarning, setDismissTokenWarning] = useState<boolean>(false)
10088
const [showPriceImpactModal, setShowPriceImpactModal] = useState<boolean>(false)
10189

@@ -463,7 +451,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
463451
)
464452

465453
const inputCurrency = currencies[Field.INPUT] ?? undefined
466-
const switchChain = useSwitchChain()
454+
const selectChain = useSelectChain()
455+
467456
const switchingChain = useAppSelector((state) => state.wallets.switchingChain)
468457
const targetChain = switchingChain ? switchingChain : undefined
469458
const switchingChainIsSupported = useIsSupportedChainId(targetChain)
@@ -474,8 +463,8 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
474463
<>
475464
<TokenSafetyModal
476465
isOpen={urlTokensNotInDefault.length > 0 && !dismissTokenWarning}
477-
tokenAddress={urlTokensNotInDefault[0]?.address}
478-
secondTokenAddress={urlTokensNotInDefault[1]?.address}
466+
token0={urlTokensNotInDefault[0]}
467+
token1={urlTokensNotInDefault[1]}
479468
onContinue={handleConfirmTokenWarning}
480469
onCancel={handleDismissTokenWarning}
481470
showCancel={true}
@@ -624,7 +613,7 @@ export function SwapForm({ disableTokenInputs = false, onCurrencyChange }: SwapF
624613
$borderRadius="16px"
625614
onClick={async () => {
626615
try {
627-
await switchChain(chainId)
616+
await selectChain(chainId)
628617
} catch (error) {
629618
if (didUserReject(error)) {
630619
// Ignore error, which keeps the user on the previous chain.

apps/web/src/pages/Swap/index.tsx

+5-16
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,16 @@ import SwapHeader from 'components/swap/SwapHeader'
77
import { SwapTab } from 'components/swap/constants'
88
import { PageWrapper, SwapWrapper } from 'components/swap/styled'
99
import { useSupportedChainId } from 'constants/chains'
10-
import { useCurrency } from 'hooks/Tokens'
11-
import useParsedQueryString from 'hooks/useParsedQueryString'
1210
import { useScreenSize } from 'hooks/useScreenSize'
1311
import { SendForm } from 'pages/Swap/Send/SendForm'
14-
import { ReactNode, useMemo } from 'react'
12+
import { ReactNode } from 'react'
1513
import { useLocation } from 'react-router-dom'
1614
import { InterfaceTrade, TradeState } from 'state/routing/types'
1715
import { isPreviewTrade } from 'state/routing/utils'
1816
import { SwapAndLimitContextProvider, SwapContextProvider } from 'state/swap/SwapContext'
19-
import { queryParametersToCurrencyState } from 'state/swap/hooks'
17+
import { useInitialCurrencyState } from 'state/swap/hooks'
2018
import { CurrencyState, SwapAndLimitContext } from 'state/swap/types'
2119
import { useChainId } from 'wagmi'
22-
2320
import { useIsDarkMode } from '../../theme/components/ThemeToggle'
2421
import { LimitFormWrapper } from './Limit/LimitForm'
2522
import { SwapForm } from './SwapForm'
@@ -39,24 +36,16 @@ export function getIsReviewableQuote(
3936
export default function SwapPage({ className }: { className?: string }) {
4037
const location = useLocation()
4138

42-
const supportedChainId = useSupportedChainId(useChainId())
43-
const chainId = supportedChainId || ChainId.MAINNET
44-
45-
const parsedQs = useParsedQueryString()
46-
const parsedCurrencyState = useMemo(() => {
47-
return queryParametersToCurrencyState(parsedQs)
48-
}, [parsedQs])
49-
50-
const initialInputCurrency = useCurrency(parsedCurrencyState.inputCurrencyId, chainId)
51-
const initialOutputCurrency = useCurrency(parsedCurrencyState.outputCurrencyId, chainId)
39+
const { initialInputCurrency, initialOutputCurrency, chainId } = useInitialCurrencyState()
40+
const shouldDisableTokenInputs = useSupportedChainId(useChainId()) === undefined
5241

5342
return (
5443
<Trace page={InterfacePageName.SWAP_PAGE} shouldLogImpression>
5544
<PageWrapper>
5645
<Swap
5746
className={className}
5847
chainId={chainId}
59-
disableTokenInputs={supportedChainId === undefined}
48+
disableTokenInputs={shouldDisableTokenInputs}
6049
initialInputCurrency={initialInputCurrency}
6150
initialOutputCurrency={initialOutputCurrency}
6251
syncTabToUrl={true}

apps/web/src/state/swap/hooks.tsx

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Currency, CurrencyAmount, TradeType } from '@uniswap/sdk-core'
1+
import { ChainId, Currency, CurrencyAmount, TradeType } from '@uniswap/sdk-core'
22
import { useWeb3React } from '@web3-react/core'
33
import { Field } from 'components/swap/constants'
44
import useAutoSlippageTolerance from 'hooks/useAutoSlippageTolerance'
@@ -13,9 +13,13 @@ import { isClassicTrade, isSubmittableTrade, isUniswapXTrade } from 'state/routi
1313
import { useUserSlippageToleranceWithDefault } from 'state/user/hooks'
1414
import { isAddress } from 'utilities/src/addresses'
1515

16+
import { useSupportedChainId } from 'constants/chains'
17+
import { useCurrency } from 'hooks/Tokens'
18+
import useParsedQueryString from 'hooks/useParsedQueryString'
19+
import { getParsedChainId } from 'hooks/useSyncChainQuery'
1620
import useNativeCurrency from 'lib/hooks/useNativeCurrency'
1721
import { InterfaceTrade, RouterPreference, TradeState } from 'state/routing/types'
18-
import { useAccount } from 'wagmi'
22+
import { useAccount, useChainId } from 'wagmi'
1923
import { useCurrencyBalance, useCurrencyBalances } from '../connection/hooks'
2024
import {
2125
CurrencyState,
@@ -280,6 +284,7 @@ export function queryParametersToCurrencyState(parsedQs: ParsedQs): SerializedCu
280284
let inputCurrency = parseCurrencyFromURLParameter(parsedQs.inputCurrency ?? parsedQs.inputcurrency)
281285
let outputCurrency = parseCurrencyFromURLParameter(parsedQs.outputCurrency ?? parsedQs.outputcurrency)
282286
const independentField = parseIndependentFieldURLParameter(parsedQs.exactField)
287+
const chainId = getParsedChainId(parsedQs)
283288

284289
if (inputCurrency === '' && outputCurrency === '' && independentField === Field.INPUT) {
285290
// Defaults to having the native currency selected
@@ -292,5 +297,25 @@ export function queryParametersToCurrencyState(parsedQs: ParsedQs): SerializedCu
292297
return {
293298
inputCurrencyId: inputCurrency === '' ? undefined : inputCurrency ?? undefined,
294299
outputCurrencyId: outputCurrency === '' ? undefined : outputCurrency ?? undefined,
300+
chainId,
295301
}
296302
}
303+
304+
export function useInitialCurrencyState(): {
305+
initialInputCurrency?: Currency
306+
initialOutputCurrency?: Currency
307+
chainId: ChainId
308+
} {
309+
const parsedQs = useParsedQueryString()
310+
const parsedCurrencyState = useMemo(() => {
311+
return queryParametersToCurrencyState(parsedQs)
312+
}, [parsedQs])
313+
314+
const connectedChainId = useChainId()
315+
const chainId = useSupportedChainId(parsedCurrencyState.chainId ?? connectedChainId) ?? ChainId.MAINNET
316+
317+
const initialInputCurrency = useCurrency(parsedCurrencyState.inputCurrencyId, chainId)
318+
const initialOutputCurrency = useCurrency(parsedCurrencyState.outputCurrencyId, chainId)
319+
320+
return { initialInputCurrency, initialOutputCurrency, chainId }
321+
}

apps/web/src/state/swap/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export const SwapAndLimitContext = createContext<SwapAndLimitContextType>({
100100
export interface SerializedCurrencyState {
101101
inputCurrencyId?: string
102102
outputCurrencyId?: string
103+
chainId?: number
103104
}
104105

105106
// shared state between Swap and Limit

0 commit comments

Comments
 (0)