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
53b10bcd
Commit
53b10bcd
authored
Oct 17, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
eb6cc098
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
8 deletions
+14
-8
RELEASE
RELEASE
+11
-6
VERSION
VERSION
+1
-1
hooks.ts
.../components/AccountDrawer/MiniPortfolio/Activity/hooks.ts
+2
-1
No files found.
RELEASE
View file @
53b10bcd
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
P3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R
`
- CIDv0: `Qm
fZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z
`
- CIDv1: `bafybei
akncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli
`
- CIDv1: `bafybei
h76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde
`
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,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,10 +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
akncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli
.ipfs.dweb.link/
- https://bafybei
h76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde
.ipfs.dweb.link/
- https://bafybei
akncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli
.ipfs.cf-ipfs.com/
- https://bafybei
h76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde
.ipfs.cf-ipfs.com/
- [ipfs://Qm
P3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/](ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R
/)
- [ipfs://Qm
fZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z/](ipfs://QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z
/)
### 5.53.5 (2024-10-16)
### 5.53.6 (2024-10-17)
### Bug Fixes
* **web:** fallback to local activity if remote is empty (#13136) 33f4425
VERSION
View file @
53b10bcd
web/5.53.5
web/5.53.6
\ No newline at end of file
\ No newline at end of file
apps/web/src/components/AccountDrawer/MiniPortfolio/Activity/hooks.ts
View file @
53b10bcd
...
@@ -47,7 +47,8 @@ function combineActivities(localMap: ActivityMap = {}, remoteMap: ActivityMap =
...
@@ -47,7 +47,8 @@ function combineActivities(localMap: ActivityMap = {}, remoteMap: ActivityMap =
if
(
localActivity
.
cancelled
)
{
if
(
localActivity
.
cancelled
)
{
// Hides misleading activities caused by cross-chain nonce collisions previously being incorrectly labelled as cancelled txs in redux
// Hides misleading activities caused by cross-chain nonce collisions previously being incorrectly labelled as cancelled txs in redux
if
(
localActivity
.
chainId
!==
remoteActivity
.
chainId
)
{
// If there is no remote activity fallback to local activity
if
(
remoteActivity
.
chainId
&&
localActivity
.
chainId
!==
remoteActivity
.
chainId
)
{
acc
.
push
(
remoteActivity
)
acc
.
push
(
remoteActivity
)
return
acc
return
acc
}
}
...
...
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