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
f230d55d
Commit
f230d55d
authored
Aug 30, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
3d23c2e7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
14 deletions
+15
-14
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
TimeSelector.tsx
apps/web/src/components/Charts/TimeSelector.tsx
+2
-3
ExploreChartsSection.tsx
apps/web/src/pages/Explore/charts/ExploreChartsSection.tsx
+5
-3
No files found.
RELEASE
View file @
f230d55d
IPFS hash of the deployment:
- CIDv0: `Qmd
bU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR
`
- CIDv1: `bafybeih
cvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q
`
- CIDv0: `Qmd
hNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu
`
- CIDv1: `bafybeih
efyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy
`
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://bafybeih
cvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q
.ipfs.dweb.link/
- https://bafybeih
cvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q
.ipfs.cf-ipfs.com/
- [ipfs://Qmd
bU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/](ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR
/)
- https://bafybeih
efyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy
.ipfs.dweb.link/
- https://bafybeih
efyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy
.ipfs.cf-ipfs.com/
- [ipfs://Qmd
hNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/](ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu
/)
### 5.44.
3
(2024-08-30)
### 5.44.
4
(2024-08-30)
### Bug Fixes
* **web:**
add link to vote - prod (#11424) 6c154d5
* **web:**
realign explore charts - prod (#11421) a5cfafa
VERSION
View file @
f230d55d
web/5.44.3
\ No newline at end of file
web/5.44.4
\ No newline at end of file
apps/web/src/components/Charts/TimeSelector.tsx
View file @
f230d55d
...
...
@@ -9,11 +9,10 @@ const DEFAULT_TIME_SELECTOR_OPTIONS = ORDERED_TIMES.map((time: TimePeriod) => ({
const
TimeOptionsContainer
=
styled
(
Flex
,
{
justifyContent
:
'
flex-end
'
,
mt
:
'
$spacing4
'
,
gap
:
'
$gap4
'
,
borderRadius
:
'
$rounded16
'
,
height
:
40
,
p
:
'
$spacing4
'
,
height
:
24
,
p
x
:
'
$spacing4
'
,
width
:
'
fit-content
'
,
overflow
:
'
visible
'
,
$md
:
{
...
...
apps/web/src/pages/Explore/charts/ExploreChartsSection.tsx
View file @
f230d55d
...
...
@@ -63,6 +63,8 @@ const SectionTitle = styled(Text, {
name
:
'
SectionTitle
'
,
fontWeight
:
'
300
'
,
whiteSpace
:
'
nowrap
'
,
color
:
'
$neutral2
'
,
lineHeight
:
24
,
})
function
VolumeChartSection
({
chainId
}:
{
chainId
:
SupportedInterfaceChainId
})
{
...
...
@@ -112,7 +114,7 @@ function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId })
return
(
<
SectionContainer
>
<
Flex
row
justifyContent=
"space-between"
alignItems=
"center"
>
<
Flex
row
justifyContent=
"space-between"
alignItems=
"center"
mb=
"$spacing8"
>
<
SectionTitle
>
<
Trans
i18nKey=
"explore.uniVolume"
/>
</
SectionTitle
>
...
...
@@ -167,7 +169,7 @@ function TVLChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
return
(
<
SectionContainer
>
<
SectionTitle
color=
"$neutral2"
>
<
SectionTitle
color=
"$neutral2"
mb=
"$spacing8"
>
<
Trans
i18nKey=
"common.uniswapTVL"
/>
</
SectionTitle
>
{
(()
=>
{
...
...
@@ -200,7 +202,7 @@ function MinimalStatDisplay({ title, value, time }: { title: ReactNode; value: n
return
(
<
SectionContainer
>
<
SectionTitle
color=
"$neutral2"
>
{
title
}
</
SectionTitle
>
<
SectionTitle
>
{
title
}
</
SectionTitle
>
<
Text
variant=
"heading3"
>
{
formatFiatPrice
({
price
:
value
,
type
:
NumberType
.
ChartFiatValue
})
}
</
Text
>
{
time
&&
(
<
Text
variant=
"body4"
fontWeight=
"200"
color=
"$neutral2"
>
...
...
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