ci(release): publish latest release

parent 8e36bfcc
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s` - CIDv0: `QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV`
- CIDv1: `bafybeictimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi` - CIDv1: `bafybeibbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq`
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://bafybeictimufoh4lae7mcfsxhjm3scrbzevhdadhljwpgs7molln7n6kpi.ipfs.dweb.link/ - https://bafybeibbbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq.ipfs.dweb.link/
- [ipfs://QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s/](ipfs://QmTwfweMceprzM3eyPD6GdtmZeuqbeotCsGndzkVDAW35s/) - [ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/](ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/)
### 5.72.2 (2025-02-19) ### 5.72.3 (2025-02-21)
### Bug Fixes
* **web:** hotfix monad down banner (#16467) 825783e
web/5.72.2 web/5.72.3
\ No newline at end of file \ No newline at end of file
...@@ -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',
......
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