ci(release): publish latest release

parent 8e36bfcc
IPFS hash of the deployment:
- CIDv0: `QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s`
- CIDv1: `bafybeictimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi`
- CIDv0: `QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV`
- CIDv1: `bafybeibbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq`
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.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybeictimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi.ipfs.dweb.link/
- [ipfs://QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s/](ipfs://QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s/)
- https://bafybeibbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq.ipfs.dweb.link/
- [ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/](ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/)
### 5.72.2 (2025-02-19)
### Bug Fixes
* **web:** hotfix monad down banner (#16467) 825783e
### 5.72.3 (2025-02-21)
web/5.72.2
\ No newline at end of file
web/5.72.3
\ No newline at end of file
......@@ -58,7 +58,7 @@ export function* refetchGQLQueriesViaOnchainOverrideVariant({
// and will continue to override the apollo cache balance until backend balance matches the onchain balance.
}
export function* modifyLocalCache({
function* modifyLocalCache({
apolloClient,
ownerAddress,
currencyIds,
......@@ -171,7 +171,16 @@ export function* modifyLocalCache({
quantity: () => {
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) {
logger.debug(
'refetchGQLQueriesViaOnchainOverrideVariantSaga.ts',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment