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
fcd04a4f
Commit
fcd04a4f
authored
Jun 13, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
2b5be034
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
10 deletions
+16
-10
RELEASE
RELEASE
+10
-5
VERSION
VERSION
+1
-1
index.tsx
apps/web/src/components/Charts/PriceChart/index.tsx
+2
-2
Delta.tsx
apps/web/src/components/Tokens/TokenDetails/Delta.tsx
+3
-2
No files found.
RELEASE
View file @
fcd04a4f
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
UKsfqcn6zpJmfBtZD3AV1o9rTrkaJHwNiJnrWZL5j7K8
`
- CIDv0: `Qm
dVVhTjJqcLTWyz6A2DAUNM84F6gESEzYGShEWMb7Giid
`
- CIDv1: `bafybei
cy6mzbrmf3vzpmgzv7xu3fjweebcnnchtzlu4jeir6qyizmfceem
`
- CIDv1: `bafybei
hbenlz6ecs7jlsn6yhsykx6wounpbqw7l42nuwu7e6zd7hzfbqvi
`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
@@ -10,9 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,9 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
IPFS gateways:
- https://bafybei
cy6mzbrmf3vzpmgzv7xu3fjweebcnnchtzlu4jeir6qyizmfceem
.ipfs.dweb.link/
- https://bafybei
hbenlz6ecs7jlsn6yhsykx6wounpbqw7l42nuwu7e6zd7hzfbqvi
.ipfs.dweb.link/
- [ipfs://Qm
UKsfqcn6zpJmfBtZD3AV1o9rTrkaJHwNiJnrWZL5j7K8/](ipfs://QmUKsfqcn6zpJmfBtZD3AV1o9rTrkaJHwNiJnrWZL5j7K8
/)
- [ipfs://Qm
dVVhTjJqcLTWyz6A2DAUNM84F6gESEzYGShEWMb7Giid/](ipfs://QmdVVhTjJqcLTWyz6A2DAUNM84F6gESEzYGShEWMb7Giid
/)
### 5.88.6 (2025-06-10)
### 5.88.7 (2025-06-13)
### Bug Fixes
* **web:** fix delta formatting error (#20860) 0b9ac1f
VERSION
View file @
fcd04a4f
web/5.88.6
web/5.88.7
\ No newline at end of file
\ No newline at end of file
apps/web/src/components/Charts/PriceChart/index.tsx
View file @
fcd04a4f
...
@@ -208,8 +208,8 @@ export function PriceChartDelta({ startingPrice, endingPrice, noColor }: PriceCh
...
@@ -208,8 +208,8 @@ export function PriceChartDelta({ startingPrice, endingPrice, noColor }: PriceCh
return
(
return
(
<
Text
variant=
"body2"
display=
"flex"
alignItems=
"center"
gap=
"$gap4"
>
<
Text
variant=
"body2"
display=
"flex"
alignItems=
"center"
gap=
"$gap4"
>
<
DeltaArrow
delta=
{
delta
}
formattedDelta=
{
formatPercent
(
Math
.
abs
(
delta
))
}
noColor=
{
noColor
}
/>
{
delta
&&
<
DeltaArrow
delta=
{
delta
}
formattedDelta=
{
formatPercent
(
Math
.
abs
(
delta
))
}
noColor=
{
noColor
}
/>
}
<
DeltaText
delta=
{
delta
}
>
{
formatPercent
(
Math
.
abs
(
delta
))
}
</
DeltaText
>
<
DeltaText
delta=
{
delta
}
>
{
delta
?
formatPercent
(
Math
.
abs
(
delta
))
:
'
-
'
}
</
DeltaText
>
</
Text
>
</
Text
>
)
)
}
}
...
...
apps/web/src/components/Tokens/TokenDetails/Delta.tsx
View file @
fcd04a4f
...
@@ -12,8 +12,9 @@ const StyledDownArrow = styled(ArrowChangeDown)<{ $noColor?: boolean }>`
...
@@ -12,8 +12,9 @@ const StyledDownArrow = styled(ArrowChangeDown)<{ $noColor?: boolean }>`
$noColor
?
theme
.
neutral2
:
theme
.
darkMode
?
colorsDark
.
statusCritical
:
colorsLight
.
statusCritical
}
;
$noColor
?
theme
.
neutral2
:
theme
.
darkMode
?
colorsDark
.
statusCritical
:
colorsLight
.
statusCritical
}
;
`
`
export
function
calculateDelta
(
start
:
number
,
current
:
number
)
{
export
function
calculateDelta
(
start
:
number
,
current
:
number
):
number
|
undefined
{
return
(
current
/
start
-
1
)
*
100
const
delta
=
(
current
/
start
-
1
)
*
100
return
isValidDelta
(
delta
)
?
delta
:
undefined
}
}
function
isValidDelta
(
delta
:
number
|
null
|
undefined
):
delta
is
number
{
function
isValidDelta
(
delta
:
number
|
null
|
undefined
):
delta
is
number
{
...
...
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