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
db1fbc5e
Commit
db1fbc5e
authored
Jul 08, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
35d8f9c7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
7 deletions
+13
-7
RELEASE
RELEASE
+6
-6
VERSION
VERSION
+1
-1
transactions.ts
apps/web/src/state/activity/polling/transactions.ts
+4
-0
types.ts
packages/uniswap/src/features/telemetry/types.ts
+2
-0
No files found.
RELEASE
View file @
db1fbc5e
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
ch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek
`
- CIDv0: `Qm
SighTNwdbMwNVFqAKsFqh2CRmBQ6ZwqVF52RRwHa19gG
`
- CIDv1: `bafybei
gvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne
`
- CIDv1: `bafybei
cbcpddgur5bzzdq2tlgvnf6t3l4fzi74tfuo5b2luhk2bku3f2su
`
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,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,14 +10,14 @@ 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
gvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne
.ipfs.dweb.link/
- https://bafybei
cbcpddgur5bzzdq2tlgvnf6t3l4fzi74tfuo5b2luhk2bku3f2su
.ipfs.dweb.link/
- [ipfs://Qm
ch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek/](ipfs://Qmch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek
/)
- [ipfs://Qm
SighTNwdbMwNVFqAKsFqh2CRmBQ6ZwqVF52RRwHa19gG/](ipfs://QmSighTNwdbMwNVFqAKsFqh2CRmBQ6ZwqVF52RRwHa19gG
/)
### 5.102.
1 (2025-07-07
)
### 5.102.
2 (2025-07-08
)
### Bug Fixes
### Bug Fixes
* **web:**
Check for undefined approval amount - prod (#21531) 242239b
* **web:**
prod cherry pick swap confirmed events (#21566) 8975015
VERSION
View file @
db1fbc5e
web/5.102.1
web/5.102.2
\ No newline at end of file
\ No newline at end of file
apps/web/src/state/activity/polling/transactions.ts
View file @
db1fbc5e
...
@@ -144,6 +144,8 @@ export function usePollPendingTransactions(onActivityUpdate: OnActivityUpdate) {
...
@@ -144,6 +144,8 @@ export function usePollPendingTransactions(onActivityUpdate: OnActivityUpdate) {
sendAnalyticsEvent
(
InterfaceEventName
.
SwapConfirmedOnClient
,
{
sendAnalyticsEvent
(
InterfaceEventName
.
SwapConfirmedOnClient
,
{
time
:
Date
.
now
()
-
tx
.
addedTime
,
time
:
Date
.
now
()
-
tx
.
addedTime
,
swap_success
:
receipt
.
status
===
'
success
'
,
swap_success
:
receipt
.
status
===
'
success
'
,
chainId
:
account
.
chainId
,
txHash
:
tx
.
hash
,
})
})
return
receipt
.
status
return
receipt
.
status
...
@@ -193,6 +195,8 @@ export function usePollPendingTransactions(onActivityUpdate: OnActivityUpdate) {
...
@@ -193,6 +195,8 @@ export function usePollPendingTransactions(onActivityUpdate: OnActivityUpdate) {
sendAnalyticsEvent
(
InterfaceEventName
.
SwapConfirmedOnClient
,
{
sendAnalyticsEvent
(
InterfaceEventName
.
SwapConfirmedOnClient
,
{
time
:
Date
.
now
()
-
tx
.
addedTime
,
time
:
Date
.
now
()
-
tx
.
addedTime
,
swap_success
:
finalizedStatus
===
'
success
'
,
swap_success
:
finalizedStatus
===
'
success
'
,
chainId
:
account
.
chainId
,
txHash
:
tx
.
hash
,
})
})
return
finalizedStatus
return
finalizedStatus
...
...
packages/uniswap/src/features/telemetry/types.ts
View file @
db1fbc5e
...
@@ -576,6 +576,8 @@ export type UniverseEventProperties = {
...
@@ -576,6 +576,8 @@ export type UniverseEventProperties = {
[
InterfaceEventName
.
SwapConfirmedOnClient
]:
{
[
InterfaceEventName
.
SwapConfirmedOnClient
]:
{
swap_success
:
boolean
swap_success
:
boolean
time
:
number
time
:
number
chainId
?:
number
txHash
:
string
}
}
[
InterfaceEventName
.
SwapTabClicked
]:
{
[
InterfaceEventName
.
SwapTabClicked
]:
{
tab
:
SwapTab
tab
:
SwapTab
...
...
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