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
c42b0551
Commit
c42b0551
authored
Feb 21, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
8e36bfcc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
13 deletions
+17
-13
RELEASE
RELEASE
+5
-10
VERSION
VERSION
+1
-1
refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
...Updates/refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
+11
-2
No files found.
RELEASE
View file @
c42b0551
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
TwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s
`
- CIDv0: `Qm
QZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV
`
- CIDv1: `bafybei
ctimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi
`
- CIDv1: `bafybei
bbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq
`
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,9 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,14 +10,9 @@ 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
ctimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi
.ipfs.dweb.link/
- https://bafybei
bbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq
.ipfs.dweb.link/
- [ipfs://Qm
TwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s/](ipfs://QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s
/)
- [ipfs://Qm
QZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/](ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV
/)
### 5.72.2 (2025-02-19)
### 5.72.3 (2025-02-21)
### Bug Fixes
* **web:** hotfix monad down banner (#16467) 825783e
VERSION
View file @
c42b0551
web/5.72.2
web/5.72.3
\ No newline at end of file
\ No newline at end of file
packages/uniswap/src/features/portfolio/portfolioUpdates/refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
View file @
c42b0551
...
@@ -58,7 +58,7 @@ export function* refetchGQLQueriesViaOnchainOverrideVariant({
...
@@ -58,7 +58,7 @@ export function* refetchGQLQueriesViaOnchainOverrideVariant({
// and will continue to override the apollo cache balance until backend balance matches the onchain balance.
// and will continue to override the apollo cache balance until backend balance matches the onchain balance.
}
}
export
function
*
modifyLocalCache
({
function
*
modifyLocalCache
({
apolloClient
,
apolloClient
,
ownerAddress
,
ownerAddress
,
currencyIds
,
currencyIds
,
...
@@ -171,7 +171,16 @@ export function* modifyLocalCache({
...
@@ -171,7 +171,16 @@ export function* modifyLocalCache({
quantity
:
()
=>
{
quantity
:
()
=>
{
return
onchainQuantity
return
onchainQuantity
},
},
denominatedValue
:
(
cachedDenominatedValue
:
Reference
|
AsStoreObject
<
Amount
>
)
=>
{
denominatedValue
:
(
cachedDenominatedValue
:
Reference
|
AsStoreObject
<
Amount
>
|
null
)
=>
{
if
(
!
cachedDenominatedValue
)
{
logger
.
debug
(
'
refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
'
,
'
modifyLocalCache
'
,
`[ITBU] No cachedDenominatedValue found for
${
currencyId
}
`
,
)
return
cachedDenominatedValue
}
if
(
!
cachedQuantity
)
{
if
(
!
cachedQuantity
)
{
logger
.
debug
(
logger
.
debug
(
'
refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
'
,
'
refetchGQLQueriesViaOnchainOverrideVariantSaga.ts
'
,
...
...
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