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
ca10b1c8
Commit
ca10b1c8
authored
Jun 26, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
68c8f2ac
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
12 deletions
+17
-12
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
useScroll.ts
apps/web/src/hooks/useScroll.ts
+4
-2
Header.tsx
apps/web/src/pages/App/Header.tsx
+4
-1
v2.tsx
apps/web/src/pages/Pool/v2.tsx
+1
-1
No files found.
RELEASE
View file @
ca10b1c8
IPFS hash of the deployment:
- CIDv0: `Qm
YHo8ByLJhirWoUo4paybfbScgQrh5xahfr737xgdjxwQ
`
- CIDv1: `bafybei
et3gsfp5g7prg2zjbaj5cwp6r3qok5fcp4rbqjdefjb7qd2bpt74
`
- CIDv0: `Qm
cit8DbnQtQk8ZzSa9E4PFXjU1ENfbMQXYv5VwfNLvF1N
`
- CIDv1: `bafybei
gvwwif77wmthgzo7xqqnjpxbqfsodjbwg3mafmnrwtcojewqpveu
`
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://bafybei
et3gsfp5g7prg2zjbaj5cwp6r3qok5fcp4rbqjdefjb7qd2bpt74
.ipfs.dweb.link/
- https://bafybei
et3gsfp5g7prg2zjbaj5cwp6r3qok5fcp4rbqjdefjb7qd2bpt74
.ipfs.cf-ipfs.com/
- [ipfs://Qm
YHo8ByLJhirWoUo4paybfbScgQrh5xahfr737xgdjxwQ/](ipfs://QmYHo8ByLJhirWoUo4paybfbScgQrh5xahfr737xgdjxwQ
/)
- https://bafybei
gvwwif77wmthgzo7xqqnjpxbqfsodjbwg3mafmnrwtcojewqpveu
.ipfs.dweb.link/
- https://bafybei
gvwwif77wmthgzo7xqqnjpxbqfsodjbwg3mafmnrwtcojewqpveu
.ipfs.cf-ipfs.com/
- [ipfs://Qm
cit8DbnQtQk8ZzSa9E4PFXjU1ENfbMQXYv5VwfNLvF1N/](ipfs://Qmcit8DbnQtQk8ZzSa9E4PFXjU1ENfbMQXYv5VwfNLvF1N
/)
### 5.36.
2 (2024-06-25
)
### 5.36.
3 (2024-06-26
)
### Bug Fixes
* **web:**
fix broken link, translation, and importing v2 positions (#… (#9493) 8fc43a8
* **web:**
legacy nav should not transition out of view on scroll (#9538) 435b634
VERSION
View file @
ca10b1c8
web/5.36.2
\ No newline at end of file
web/5.36.3
\ No newline at end of file
apps/web/src/hooks/useScroll.ts
View file @
ca10b1c8
...
...
@@ -15,8 +15,10 @@ export function useScroll() {
const
scrollListener
=
()
=>
{
setIsScrolledDown
(
window
.
scrollY
>
0
)
setHeight
(
window
.
scrollY
)
currentScrollPosition
=
window
.
scrollY
if
(
window
.
scrollY
>=
0
)
{
setHeight
(
window
.
scrollY
)
currentScrollPosition
=
window
.
scrollY
}
if
(
previousScrollPosition
<
currentScrollPosition
)
{
setDirection
(
ScrollDirection
.
DOWN
)
...
...
apps/web/src/pages/App/Header.tsx
View file @
ca10b1c8
...
...
@@ -8,6 +8,8 @@ import { memo } from 'react'
import
{
useLocation
}
from
'
react-router-dom
'
import
styled
from
'
styled-components
'
import
{
Z_INDEX
}
from
'
theme/zIndex
'
import
{
FeatureFlags
}
from
'
uniswap/src/features/gating/flags
'
import
{
useFeatureFlag
}
from
'
uniswap/src/features/gating/hooks
'
const
AppHeader
=
styled
.
div
`
grid-area:
${
GRID_AREAS
.
HEADER
}
;
...
...
@@ -37,6 +39,7 @@ export const Header = memo(function Header() {
const
isHeaderTransparent
=
!
isScrolledDown
&&
!
isBagExpanded
const
renderUkBanner
=
useRenderUkBanner
()
const
extensionEligible
=
useMobileAppPromoBannerEligible
()
const
isLegacyNav
=
!
useFeatureFlag
(
FeatureFlags
.
NavRefresh
)
return
(
<
AppHeader
id=
"AppHeader"
>
...
...
@@ -45,7 +48,7 @@ export const Header = memo(function Header() {
{
renderUkBanner
&&
<
UkBanner
/>
}
</
Banners
>
<
NavOnScroll
$hide=
{
!
isExplorePage
&&
scrollDirection
===
ScrollDirection
.
DOWN
}
$hide=
{
!
isExplorePage
&&
!
isLegacyNav
&&
scrollDirection
===
ScrollDirection
.
DOWN
}
$transparent=
{
isHeaderTransparent
}
>
<
Navbar
blur=
{
isHeaderTransparent
}
/>
...
...
apps/web/src/pages/Pool/v2.tsx
View file @
ca10b1c8
...
...
@@ -102,7 +102,7 @@ export default function Pool() {
const
[
balanceMap
,
fetchingV2PairBalances
]
=
useRpcTokenBalancesWithLoadingIndicator
(
account
.
address
,
tokenPairsWithLiquidityTokens
.
map
(({
liquidityToken
})
=>
liquidityToken
),
!
account
?.
address
,
!
account
?.
address
)
// fetch the reserves for all V2 pools in which the user has a balance
...
...
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