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
764fb94b
Commit
764fb94b
authored
May 15, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
a50127e4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
useNetworkSupportsV2.ts
apps/web/src/hooks/useNetworkSupportsV2.ts
+2
-2
PositionPage.tsx
apps/web/src/pages/Pool/PositionPage.tsx
+1
-1
No files found.
RELEASE
View file @
764fb94b
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
SHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2
`
- CIDv0: `Qm
VRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy
`
- CIDv1: `bafybei
b2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4
`
- CIDv1: `bafybei
djiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai
`
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,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,15 +10,15 @@ 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
b2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4
.ipfs.dweb.link/
- https://bafybei
djiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai
.ipfs.dweb.link/
- https://bafybei
b2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4
.ipfs.cf-ipfs.com/
- https://bafybei
djiiinp4v64dyircmic5w3lti4sj7e6jd37siispbgtytxx37gai
.ipfs.cf-ipfs.com/
- [ipfs://Qm
SHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/](ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2
/)
- [ipfs://Qm
VRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy/](ipfs://QmVRXws3RJsdKSH89DSpmN8hFzfjAiJYjXCwdG7Q7g2sSy
/)
### 5.27.
4
(2024-05-15)
### 5.27.
5
(2024-05-15)
### Bug Fixes
### Bug Fixes
* **web:**
[prod] check client chain for undefined (#8216) 50cf939
* **web:**
check for supported network on pools page - prod (#8226) 93d8a0f
VERSION
View file @
764fb94b
web/5.27.4
web/5.27.5
\ No newline at end of file
\ No newline at end of file
apps/web/src/hooks/useNetworkSupportsV2.ts
View file @
764fb94b
import
{
SUPPORTED_V2POOL_CHAIN_IDS
,
SUPPORTED_V2POOL_CHAIN_IDS_DEPRECATED
}
from
'
constants/chains
'
import
{
SUPPORTED_V2POOL_CHAIN_IDS
,
SUPPORTED_V2POOL_CHAIN_IDS_DEPRECATED
}
from
'
constants/chains
'
import
{
FeatureFlags
}
from
'
uniswap/src/features/gating/flags
'
import
{
FeatureFlags
}
from
'
uniswap/src/features/gating/flags
'
import
{
useFeatureFlag
}
from
'
uniswap/src/features/gating/hooks
'
import
{
useFeatureFlag
}
from
'
uniswap/src/features/gating/hooks
'
import
{
use
ChainId
}
from
'
wagmi
'
import
{
use
Account
}
from
'
wagmi
'
export
function
useNetworkSupportsV2
()
{
export
function
useNetworkSupportsV2
()
{
const
chainId
=
useChainId
()
const
{
chainId
}
=
useAccount
()
const
isV2EverywhereEnabled
=
useFeatureFlag
(
FeatureFlags
.
V2Everywhere
)
const
isV2EverywhereEnabled
=
useFeatureFlag
(
FeatureFlags
.
V2Everywhere
)
return
(
return
(
...
...
apps/web/src/pages/Pool/PositionPage.tsx
View file @
764fb94b
...
@@ -434,7 +434,7 @@ function PositionPageContent() {
...
@@ -434,7 +434,7 @@ function PositionPageContent() {
// flag for receiving WETH
// flag for receiving WETH
const
[
receiveWETH
,
setReceiveWETH
]
=
useState
(
false
)
const
[
receiveWETH
,
setReceiveWETH
]
=
useState
(
false
)
const
nativeCurrency
=
useNativeCurrency
(
chainId
)
const
nativeCurrency
=
useNativeCurrency
(
supportedChain
)
const
nativeWrappedSymbol
=
nativeCurrency
.
wrapped
.
symbol
const
nativeWrappedSymbol
=
nativeCurrency
.
wrapped
.
symbol
// get pool address from details returned
// get pool address from details returned
...
...
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