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
0f3c158e
Commit
0f3c158e
authored
Dec 10, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
2b2f2095
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
10 deletions
+32
-10
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
PositionPage.tsx
apps/web/src/pages/Pool/Positions/PositionPage.tsx
+12
-1
V2PositionPage.tsx
apps/web/src/pages/Pool/Positions/V2PositionPage.tsx
+12
-1
No files found.
RELEASE
View file @
0f3c158e
IPFS hash of the deployment:
- CIDv0: `Qm
YVkaRHhAZ4CrxfWyaE9qFjTJf5Yz6o25Jm52HtGqRMx8
`
- CIDv1: `bafybei
ew5g5rztppslnxuxlb5oyx33nmaajfi4jjjnpx57usr4n7z5fgfu
`
- CIDv0: `Qm
emEFGpbyCk7BDVXisJ6TzpqXXoEVpACm1kZxyz5FFGNo
`
- CIDv1: `bafybei
hua3m55nwz3am7z7j7yeoi35vrnmohvrkyi5gd4obsax72anky3q
`
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
ew5g5rztppslnxuxlb5oyx33nmaajfi4jjjnpx57usr4n7z5fgfu
.ipfs.dweb.link/
- https://bafybei
ew5g5rztppslnxuxlb5oyx33nmaajfi4jjjnpx57usr4n7z5fgfu
.ipfs.cf-ipfs.com/
- [ipfs://Qm
YVkaRHhAZ4CrxfWyaE9qFjTJf5Yz6o25Jm52HtGqRMx8/](ipfs://QmYVkaRHhAZ4CrxfWyaE9qFjTJf5Yz6o25Jm52HtGqRMx8
/)
- https://bafybei
hua3m55nwz3am7z7j7yeoi35vrnmohvrkyi5gd4obsax72anky3q
.ipfs.dweb.link/
- https://bafybei
hua3m55nwz3am7z7j7yeoi35vrnmohvrkyi5gd4obsax72anky3q
.ipfs.cf-ipfs.com/
- [ipfs://Qm
emEFGpbyCk7BDVXisJ6TzpqXXoEVpACm1kZxyz5FFGNo/](ipfs://QmemEFGpbyCk7BDVXisJ6TzpqXXoEVpACm1kZxyz5FFGNo
/)
### 5.61.
4
(2024-12-10)
### 5.61.
5
(2024-12-10)
### Bug Fixes
* **web:**
hide un-owned positions (#14449) d5e701f
* **web:**
wrap positions in multichain context (#14468) 4a007d9
VERSION
View file @
0f3c158e
web/5.61.4
\ No newline at end of file
web/5.61.5
\ No newline at end of file
apps/web/src/pages/Pool/Positions/PositionPage.tsx
View file @
0f3c158e
...
...
@@ -19,6 +19,7 @@ import { ChevronRight } from 'react-feather'
import
{
Navigate
,
useLocation
,
useNavigate
,
useParams
}
from
'
react-router-dom
'
import
{
setOpenModal
}
from
'
state/application/reducer
'
import
{
useAppDispatch
}
from
'
state/hooks
'
import
{
MultichainContextProvider
}
from
'
state/multichain/MultichainContext
'
import
{
usePendingLPTransactionsChangeListener
}
from
'
state/transactions/hooks
'
import
{
ClickableTamaguiStyle
}
from
'
theme/components
'
import
{
Button
,
Flex
,
Main
,
Switch
,
Text
,
styled
}
from
'
ui/src
'
...
...
@@ -96,7 +97,17 @@ function parseTokenId(tokenId: string | undefined): BigNumber | undefined {
}
}
export
default
function
PositionPage
()
{
export
default
function
PositionPageWrapper
()
{
const
chainId
=
useChainIdFromUrlParam
()
return
(
<
MultichainContextProvider
initialChainId=
{
chainId
}
>
<
PositionPage
/>
</
MultichainContextProvider
>
)
}
function
PositionPage
()
{
const
{
tokenId
:
tokenIdFromUrl
}
=
useParams
<
{
tokenId
:
string
}
>
()
const
tokenId
=
parseTokenId
(
tokenIdFromUrl
)
const
chainId
=
useChainIdFromUrlParam
()
...
...
apps/web/src/pages/Pool/Positions/V2PositionPage.tsx
View file @
0f3c158e
...
...
@@ -15,6 +15,7 @@ import { ChevronRight } from 'react-feather'
import
{
Navigate
,
useNavigate
,
useParams
}
from
'
react-router-dom
'
import
{
setOpenModal
}
from
'
state/application/reducer
'
import
{
useAppDispatch
}
from
'
state/hooks
'
import
{
MultichainContextProvider
}
from
'
state/multichain/MultichainContext
'
import
{
usePendingLPTransactionsChangeListener
}
from
'
state/transactions/hooks
'
import
{
Button
,
Circle
,
Flex
,
Main
,
Shine
,
Text
,
styled
}
from
'
ui/src
'
import
{
useGetPositionQuery
}
from
'
uniswap/src/data/rest/getPosition
'
...
...
@@ -61,7 +62,17 @@ function RowLoader({ withIcon }: { withIcon?: boolean }) {
)
}
export
default
function
V2PositionPage
()
{
export
default
function
V2PositionPageWrapper
()
{
const
chainId
=
useChainIdFromUrlParam
()
return
(
<
MultichainContextProvider
initialChainId=
{
chainId
}
>
<
V2PositionPage
/>
</
MultichainContextProvider
>
)
}
function
V2PositionPage
()
{
const
{
pairAddress
}
=
useParams
<
{
pairAddress
:
string
}
>
()
const
chainId
=
useChainIdFromUrlParam
()
const
account
=
useAccount
()
...
...
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