Skip to content

Commit eb6cc09

Browse files
ci(release): publish latest release
1 parent c6692f1 commit eb6cc09

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

RELEASE

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmdF4tv3Pdw3BT8hSnBZ2XZrE4QDwnsjJDaey4PF7H8wFR`
3-
- CIDv1: `bafybeig5oevksar6sqpspbdxlqc7rdnyg7mf7jrqrazwkcfoal7r3xgagq`
2+
- CIDv0: `QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R`
3+
- CIDv1: `bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli`
44

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

@@ -10,10 +10,10 @@ 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://bafybeig5oevksar6sqpspbdxlqc7rdnyg7mf7jrqrazwkcfoal7r3xgagq.ipfs.dweb.link/
14-
- https://bafybeig5oevksar6sqpspbdxlqc7rdnyg7mf7jrqrazwkcfoal7r3xgagq.ipfs.cf-ipfs.com/
15-
- [ipfs://QmdF4tv3Pdw3BT8hSnBZ2XZrE4QDwnsjJDaey4PF7H8wFR/](ipfs://QmdF4tv3Pdw3BT8hSnBZ2XZrE4QDwnsjJDaey4PF7H8wFR/)
13+
- https://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.dweb.link/
14+
- https://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.cf-ipfs.com/
15+
- [ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/](ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/)
1616

17-
### 5.53.4 (2024-10-16)
17+
### 5.53.5 (2024-10-16)
1818

1919

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.53.4
1+
web/5.53.5

apps/mobile/src/features/openai/OpenAIContext.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import {
1919
import { AssetType, CurrencyAsset } from 'uniswap/src/entities/assets'
2020
import { toSupportedChainId } from 'uniswap/src/features/chains/utils'
2121
import { usePortfolioBalances, useTokenBalancesGroupedByVisibility } from 'uniswap/src/features/dataApi/balances'
22-
import { ALL_GQL_CHAINS } from 'uniswap/src/features/dataApi/searchTokens'
2322
import { FeatureFlags } from 'uniswap/src/features/gating/flags'
2423
import { useFeatureFlag } from 'uniswap/src/features/gating/hooks'
24+
import { useEnabledChains } from 'uniswap/src/features/settings/hooks'
2525
import { ModalName } from 'uniswap/src/features/telemetry/constants'
2626
import { UniverseChainId } from 'uniswap/src/types/chains'
2727
import { CurrencyField } from 'uniswap/src/types/currency'
@@ -137,6 +137,7 @@ function _OpenAIContextProvider({ children }: { children: React.ReactNode }): JS
137137
})
138138

139139
const activeAddress = useActiveAccountAddress() || undefined
140+
const { gqlChains } = useEnabledChains()
140141

141142
const signerAccount = useSignerAccounts()[0]
142143
// We sync backup state across all accounts under the same mnemonic, so can check status with any account.
@@ -210,7 +211,7 @@ function _OpenAIContextProvider({ children }: { children: React.ReactNode }): JS
210211
const { text, chain } = args
211212
const { data } = await apollo.query({
212213
query: SearchTokensDocument,
213-
variables: { searchQuery: text, chains: chain ? [chain] : ALL_GQL_CHAINS },
214+
variables: { searchQuery: text, chains: chain ? [chain] : gqlChains },
214215
})
215216
return { data }
216217
},
@@ -311,6 +312,7 @@ function _OpenAIContextProvider({ children }: { children: React.ReactNode }): JS
311312
shownTokens,
312313
signerAccount?.address,
313314
swapSwarning,
315+
gqlChains,
314316
])
315317

316318
const processMessages = useCallback(async () => {

packages/uniswap/src/features/dataApi/searchTokens.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
import { useCallback, useMemo } from 'react'
2-
import { Chain, useSearchTokensQuery } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
2+
import { useSearchTokensQuery } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
33
import { GqlResult } from 'uniswap/src/data/types'
44
import { toGraphQLChain } from 'uniswap/src/features/chains/utils'
55
import { CurrencyInfo } from 'uniswap/src/features/dataApi/types'
66
import { gqlTokenToCurrencyInfo, usePersistedError } from 'uniswap/src/features/dataApi/utils'
7+
import { useEnabledChains } from 'uniswap/src/features/settings/hooks'
78
import { UniverseChainId } from 'uniswap/src/types/chains'
89

9-
export const ALL_GQL_CHAINS = Object.values(Chain)
10-
1110
export function useSearchTokens(
1211
searchQuery: string | null,
1312
chainFilter: UniverseChainId | null,
1413
skip: boolean,
1514
): GqlResult<CurrencyInfo[]> {
1615
const gqlChainFilter = chainFilter ? toGraphQLChain(chainFilter) : null
16+
const { gqlChains } = useEnabledChains()
1717
const { data, loading, error, refetch } = useSearchTokensQuery({
1818
variables: {
1919
searchQuery: searchQuery ?? '',
20-
chains: gqlChainFilter ? [gqlChainFilter] : ALL_GQL_CHAINS,
20+
chains: gqlChainFilter ? [gqlChainFilter] : gqlChains,
2121
},
2222
skip,
2323
})

0 commit comments

Comments
 (0)