Skip to content

Commit 6bac24a

Browse files
ci(release): publish latest release
1 parent df1b743 commit 6bac24a

File tree

4 files changed

+30
-26
lines changed

4 files changed

+30
-26
lines changed

RELEASE

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G`
3-
- CIDv1: `bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme`
2+
- CIDv0: `QmSSKD7h4Q9E4bEtFW5zqeBJQ419v7BGHUushs7Myz2WQQ`
3+
- CIDv1: `bafybeib44ixryspegordbiauzjcek6nvu4kqbdgucj6dgvwiv4jad6owde`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme.ipfs.dweb.link/
14-
- https://bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme.ipfs.cf-ipfs.com/
15-
- [ipfs://QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G/](ipfs://QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G/)
13+
- https://bafybeib44ixryspegordbiauzjcek6nvu4kqbdgucj6dgvwiv4jad6owde.ipfs.dweb.link/
14+
- https://bafybeib44ixryspegordbiauzjcek6nvu4kqbdgucj6dgvwiv4jad6owde.ipfs.cf-ipfs.com/
15+
- [ipfs://QmSSKD7h4Q9E4bEtFW5zqeBJQ419v7BGHUushs7Myz2WQQ/](ipfs://QmSSKD7h4Q9E4bEtFW5zqeBJQ419v7BGHUushs7Myz2WQQ/)
1616

17-
### 5.50.1 (2024-10-07)
17+
### 5.50.2 (2024-10-09)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** invalidate local activity cache for updates to transaction or signature state - prod (#12732) 74b24f2
22+
* **web:** log step and original error on web (#12826) 5d4bd4f
2323

2424

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.50.1
1+
web/5.50.2

apps/web/src/state/sagas/transactions/swapSaga.ts

+19-6
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ import {
5454
import { isClassic } from 'uniswap/src/features/transactions/swap/utils/routing'
5555
import { getClassicQuoteFromResponse } from 'uniswap/src/features/transactions/swap/utils/tradingApi'
5656
import { createSaga } from 'uniswap/src/utils/saga'
57+
import { errorToString } from 'utilities/src/errors'
5758
import { percentFromFloat } from 'utilities/src/format/percent'
5859
import { logger } from 'utilities/src/logger/logger'
60+
import { LoggerErrorContext } from 'utilities/src/logger/types'
5961
import { didUserReject } from 'utils/swapErrorToUserReadableMessage'
6062

6163
interface HandleSwapStepParams extends Omit<HandleOnChainStepParams, 'step' | 'info'> {
@@ -206,9 +208,7 @@ function* classicSwap(
206208
}
207209
} catch (error) {
208210
const displayableError = getDisplayableError(error, step)
209-
if (displayableError) {
210-
logger.error(displayableError, { tags: { file: 'swapSaga', function: 'classicSwap' } })
211-
}
211+
logSwapError(displayableError, { tags: { file: 'swapSaga', function: 'classicSwap' } })
212212
onFailure(displayableError)
213213
return
214214
}
@@ -256,9 +256,7 @@ function* uniswapXSwap(
256256
}
257257
} catch (error) {
258258
const displayableError = getDisplayableError(error, step)
259-
if (displayableError) {
260-
logger.error(displayableError, { tags: { file: 'swapSaga', function: 'uniswapXSwap' } })
261-
}
259+
logSwapError(displayableError, { tags: { file: 'swapSaga', function: 'uniswapXSwap' } })
262260
onFailure(displayableError)
263261
return
264262
}
@@ -267,6 +265,21 @@ function* uniswapXSwap(
267265
yield* call(onSuccess)
268266
}
269267

268+
function logSwapError(error: TransactionError | undefined, captureContext: LoggerErrorContext) {
269+
if (error instanceof TransactionStepFailedError) {
270+
logger.error(
271+
{
272+
...error,
273+
step: JSON.stringify(error.step),
274+
originalError: errorToString(error.originalError),
275+
},
276+
captureContext,
277+
)
278+
} else if (error) {
279+
logger.error(error, captureContext)
280+
}
281+
}
282+
270283
function getDisplayableError(error: Error, step: TransactionStep): TransactionError | undefined {
271284
// If the user rejects a request, or it's a known interruption e.g. trade update, we handle gracefully / do not show error UI
272285
if (didUserReject(error) || error instanceof HandledTransactionInterrupt) {

packages/uniswap/src/features/transactions/swap/utils/tradingApi.ts

+3-12
Original file line numberDiff line numberDiff line change
@@ -327,19 +327,10 @@ export function validateTrade({
327327
const inputsMatch = areAddressesEqual(currencyIn.wrapped.address, trade?.inputAmount.currency.wrapped.address)
328328
const outputsMatch = areAddressesEqual(currencyOut.wrapped.address, trade.outputAmount.currency.wrapped.address)
329329

330-
// TODO(MOB-3028): check if this logic needs any adjustments once we add UniswapX support.
331-
// Verify the amount specified in the quote response matches the exact amount from input state
332-
const exactAmountFromQuote = isClassicQuote(trade.quote?.quote)
333-
? exactCurrencyField === CurrencyField.INPUT
334-
? trade.quote.quote.input?.amount
335-
: trade.quote.quote.output?.amount
336-
: undefined
337-
338330
const tokenAddressesMatch = inputsMatch && outputsMatch
339-
const exactAmountsMatch = exactAmount?.toExact() !== exactAmountFromQuote
340-
341-
if (!(tokenAddressesMatch && exactAmountsMatch)) {
342-
logger.error(new Error(`Mismatched ${!tokenAddressesMatch ? 'address' : 'exact amount'} in swap trade`), {
331+
// TODO(WEB-5132): Add validation checking that exact amount from response matches exact amount from user input
332+
if (!tokenAddressesMatch) {
333+
logger.error(new Error(`Mismatched address in swap trade`), {
343334
tags: { file: 'tradingApi/utils', function: 'validateTrade' },
344335
extra: {
345336
formState: {

0 commit comments

Comments
 (0)