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
35d8f9c7
Commit
35d8f9c7
authored
Jul 07, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
405d82d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
9 deletions
+14
-9
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
hooks.tsx
apps/web/src/state/transactions/hooks.tsx
+6
-1
No files found.
RELEASE
View file @
35d8f9c7
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
VMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def
`
- CIDv0: `Qm
ch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek
`
- CIDv1: `bafybei
dijorazwioy33ekcfbv2zyvthhjtklisrk6aoyxl6evmoro4jpka
`
- CIDv1: `bafybei
gvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne
`
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
dijorazwioy33ekcfbv2zyvthhjtklisrk6aoyxl6evmoro4jpka
.ipfs.dweb.link/
- https://bafybei
gvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne
.ipfs.dweb.link/
- [ipfs://Qm
VMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def/](ipfs://QmVMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def
/)
- [ipfs://Qm
ch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek/](ipfs://Qmch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek
/)
##
5.102.0 (2025-07-03
)
##
# 5.102.1 (2025-07-07
)
###
Featur
es
###
Bug Fix
es
* **web:**
Warn instead of error for known bug - prod (#21504) 534ada4
* **web:**
Check for undefined approval amount - prod (#21531) 242239b
VERSION
View file @
35d8f9c7
web/5.102.0
web/5.102.1
\ No newline at end of file
\ No newline at end of file
apps/web/src/state/transactions/hooks.tsx
View file @
35d8f9c7
...
@@ -148,7 +148,12 @@ function usePendingApprovalAmount(token?: Token, spender?: string): BigNumber |
...
@@ -148,7 +148,12 @@ function usePendingApprovalAmount(token?: Token, spender?: string): BigNumber |
if
(
!
tx
||
isConfirmedTx
(
tx
)
||
tx
.
info
.
type
!==
UniswapTransactionType
.
Approve
)
{
if
(
!
tx
||
isConfirmedTx
(
tx
)
||
tx
.
info
.
type
!==
UniswapTransactionType
.
Approve
)
{
continue
continue
}
}
if
(
tx
.
info
.
spender
===
spender
&&
tx
.
info
.
tokenAddress
===
token
.
address
&&
isTransactionRecent
(
tx
))
{
if
(
tx
.
info
.
spender
===
spender
&&
tx
.
info
.
tokenAddress
===
token
.
address
&&
isTransactionRecent
(
tx
)
&&
tx
.
info
.
approvalAmount
!==
undefined
)
{
return
BigNumber
.
from
(
tx
.
info
.
approvalAmount
)
return
BigNumber
.
from
(
tx
.
info
.
approvalAmount
)
}
}
}
}
...
...
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