Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
98e2fa58
Commit
98e2fa58
authored
Sep 05, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
6f9d0133
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
11 deletions
+13
-11
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
QueryTokenLogo.tsx
apps/web/src/components/Logo/QueryTokenLogo.tsx
+1
-1
SuggestionRow.tsx
apps/web/src/components/NavBar/SearchBar/SuggestionRow.tsx
+4
-2
No files found.
RELEASE
View file @
98e2fa58
IPFS hash of the deployment:
- CIDv0: `Qm
PJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN
`
- CIDv1: `bafybeia
om4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqd
m`
- CIDv0: `Qm
NqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri
`
- CIDv1: `bafybeia
hlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbego
m`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
...
@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybeia
om4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqd
m.ipfs.dweb.link/
- https://bafybeia
om4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqd
m.ipfs.cf-ipfs.com/
- [ipfs://Qm
PJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN/](ipfs://QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN
/)
- https://bafybeia
hlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbego
m.ipfs.dweb.link/
- https://bafybeia
hlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbego
m.ipfs.cf-ipfs.com/
- [ipfs://Qm
NqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/](ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri
/)
### 5.45.
1 (2024-09-04
)
### 5.45.
2 (2024-09-05
)
### Bug Fixes
* **web:**
Show all tabs when multichain_explore is disabled - prod (#11534) d9ec7de
* **web:**
stop crash on search - prod (#11568) 12d0927
VERSION
View file @
98e2fa58
web/5.45.1
\ No newline at end of file
web/5.45.2
\ No newline at end of file
apps/web/src/components/Logo/QueryTokenLogo.tsx
View file @
98e2fa58
...
...
@@ -16,7 +16,7 @@ export default function QueryTokenLogo(
token
?:
TopToken
|
TokenQueryData
|
GqlSearchToken
|
TokenStat
},
)
{
const
chain
=
getChainFromChainUrlParam
(
props
.
token
?.
chain
.
toLowerCase
())
const
chain
=
getChainFromChainUrlParam
(
props
.
token
?.
chain
?
.
toLowerCase
())
const
chainId
=
chain
?.
id
??
UniverseChainId
.
Mainnet
const
isNative
=
props
.
token
?.
address
===
NATIVE_CHAIN_ID
const
isTokenStat
=
!!
props
.
token
&&
'
volume
'
in
props
.
token
...
...
apps/web/src/components/NavBar/SearchBar/SuggestionRow.tsx
View file @
98e2fa58
...
...
@@ -17,7 +17,7 @@ import { Link, useNavigate } from 'react-router-dom'
import
{
EllipsisStyle
,
ThemedText
}
from
'
theme/components
'
import
{
Flex
}
from
'
ui/src
'
import
{
Verified
}
from
'
ui/src/components/icons/Verified
'
import
{
TokenStandard
}
from
'
uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks
'
import
{
Chain
,
TokenStandard
}
from
'
uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks
'
import
{
addToSearchHistory
}
from
'
uniswap/src/features/search/searchHistorySlice
'
import
{
sendAnalyticsEvent
}
from
'
uniswap/src/features/telemetry/send
'
import
{
InterfaceSearchResultSelectionProperties
}
from
'
uniswap/src/features/telemetry/types
'
...
...
@@ -131,7 +131,9 @@ export function SuggestionRow({
sendAnalyticsEvent
(
InterfaceEventName
.
NAVBAR_RESULT_SELECTED
,
{
...
eventProperties
})
},
[
suggestion
,
isToken
,
toggleOpen
,
eventProperties
,
dispatch
])
const
path
=
isToken
?
getTokenDetailsURL
({
...
suggestion
})
:
`/nfts/collection/
${
suggestion
.
address
}
`
const
path
=
isToken
?
getTokenDetailsURL
({
...
suggestion
,
chain
:
suggestion
.
chain
??
Chain
.
Ethereum
})
:
`/nfts/collection/
${
suggestion
.
address
}
`
// Close the modal on escape
useEffect
(()
=>
{
const
keyDownHandler
=
(
event
:
KeyboardEvent
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment