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
34fc5682
Commit
34fc5682
authored
May 14, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
e5d69d8e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
53 deletions
+11
-53
RELEASE
RELEASE
+7
-51
VERSION
VERSION
+1
-1
ChainSelector.tsx
apps/web/src/components/NavBar/ChainSelector.tsx
+3
-1
No files found.
RELEASE
View file @
34fc5682
IPFS hash of the deployment:
- CIDv0: `Qm
ZirSDi4Fvdxc9L8veeJwpU38XLuBHQYFKR2avBuyXUqA
`
- CIDv1: `bafybei
fjecl3zl5tsaxhooqwfibjzteb3w4ckaag5oos2oqnkadkpovumu
`
- CIDv0: `Qm
Ux8BPyhu12b6EshRYs7nmfAWACqUAgSeEySx7zbbtZ74
`
- CIDv1: `bafybei
dchsbmucfvakacsrez3n2p4r7p2xysz75e4q3vidh5ydlztofto4
`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
...
@@ -10,59 +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
fjecl3zl5tsaxhooqwfibjzteb3w4ckaag5oos2oqnkadkpovumu
.ipfs.dweb.link/
- https://bafybei
fjecl3zl5tsaxhooqwfibjzteb3w4ckaag5oos2oqnkadkpovumu
.ipfs.cf-ipfs.com/
- [ipfs://Qm
ZirSDi4Fvdxc9L8veeJwpU38XLuBHQYFKR2avBuyXUqA/](ipfs://QmZirSDi4Fvdxc9L8veeJwpU38XLuBHQYFKR2avBuyXUqA
/)
- https://bafybei
dchsbmucfvakacsrez3n2p4r7p2xysz75e4q3vidh5ydlztofto4
.ipfs.dweb.link/
- https://bafybei
dchsbmucfvakacsrez3n2p4r7p2xysz75e4q3vidh5ydlztofto4
.ipfs.cf-ipfs.com/
- [ipfs://Qm
Ux8BPyhu12b6EshRYs7nmfAWACqUAgSeEySx7zbbtZ74/](ipfs://QmUx8BPyhu12b6EshRYs7nmfAWACqUAgSeEySx7zbbtZ74
/)
## 5.27.0 (2024-05-14)
### Features
* **web:** add "name='description'" tags for SEO (#7782) 75b57c7
* **web:** add retry with classic in xv2 GPA error (#7375) 92ccc68
* **web:** add uniswapX v2 (#7072) 25c0827
* **web:** fix token explore filter test (#8103) 348cd70
* **web:** refactor Send flow to use wagmi signer (#7596) baa4e5e
* **web:** send connection meta to Sentry (#7650) a576fc1
* **web:** update/add SEO descriptions to all pages (#7984) f0a5c71
* **web:** wagmi connection (#7558) 80dd479
### 5.27.1 (2024-05-14)
### Bug Fixes
* **web:** add build = true to craco fork ts checker to avoid output file ts errors (#7980) c513191
* **web:** add info to swap modified event (#8044) 31d52d1
* **web:** adding vercels unique inline script (#7918) 9622186
* **web:** block v3 pool creation for FOT tokens (#7735) f4f22e9
* **web:** hotfix warning modified extensions (#8071) 065cd16
* **web:** hover animation behind Hero title (#8055) e740bb8
* **web:** landing page gap staging (#8177) e3870f3
* **web:** limits insufficient-balance behaviors (#7977) b18f808
* **web:** multi routing copy is wrong (#7923) ccaecac
* **web:** set locale in state when clicking SwitchLocaleLink (#7968) 931c7cb
* **web:** try hardcoded block number from 24hrs ago (#8119) 7b1e92b
* **web:** update favicon (#7976) 4396120
### Build Systems
* **web:** static ip runner (#8109) 42159c2
### Tests
* **web:** annotate proxy fetch flakiness workaround (#7998) 1589c7e
* **web:** reset between suites, revert within suites (#8012) 746b2cb
* **web:** revert chain after liquidity test (#8065) 6adbb1a
* **web:** skip duplicate static analysis in CI (#7996) 9e07b63
* **web:** use stable CSP for cloud-tests (#7997) e885436
### Code Refactoring
* **web:** block infringing collection (#7915) 7aa7d29
* **web:** update transactions hooks to use wagmi directly (#7584) 4ec79a3
* **web:** use wagmi for chainId (#7953) a43c588
* **web:** Show unsupported network in navbar - prod (#8182) 937a6a4
VERSION
View file @
34fc5682
web/5.27.0
\ No newline at end of file
web/5.27.1
\ No newline at end of file
apps/web/src/components/NavBar/ChainSelector.tsx
View file @
34fc5682
...
...
@@ -60,7 +60,9 @@ function useWalletSupportedChains(): ChainId[] {
}
export
const
ChainSelector
=
({
leftAlign
}:
{
leftAlign
?:
boolean
})
=>
{
const
chainId
=
useChainId
()
const
disconnectedChainId
=
useChainId
()
const
account
=
useAccount
()
const
chainId
=
account
?.
chainId
??
disconnectedChainId
const
isSupportedChain
=
useIsSupportedChainId
(
chainId
)
const
[
isOpen
,
setIsOpen
]
=
useState
<
boolean
>
(
false
)
...
...
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