Skip to content

Commit a510762

Browse files
ci(release): publish latest release
1 parent d35576e commit a510762

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
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: `QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF`
3-
- CIDv1: `bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq`
2+
- CIDv0: `QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA`
3+
- CIDv1: `bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre`
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://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.dweb.link/
14-
- https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.cf-ipfs.com/
15-
- [ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/](ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/)
13+
- https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.dweb.link/
14+
- https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.cf-ipfs.com/
15+
- [ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/](ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/)
1616

17-
### 5.51.4 (2024-10-10)
17+
### 5.51.5 (2024-10-10)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** enable token swap on non mainnet tdp for legacy swap - prod (#12900) cb91f9e
22+
* **web:** log SWAP_SIGNED from uniswapx saga [prod] (#12905) f97523f
2323

2424

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.51.4
1+
web/5.51.5

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

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { SwapEventName } from '@uniswap/analytics-events'
12
import { formatSwapSignedAnalyticsEventProperties } from 'lib/utils/analytics'
23
import { PopupType, addPopup } from 'state/application/reducer'
34
import {
@@ -55,6 +56,19 @@ export function* handleUniswapXSignatureStep(params: HandleUniswapXSignatureStep
5556
}
5657

5758
addTransactionBreadcrumb({ step, data: { routing, ...signatureDetails.swapInfo }, status: 'in progress' })
59+
sendAnalyticsEvent(
60+
SwapEventName.SWAP_SIGNED,
61+
formatSwapSignedAnalyticsEventProperties({
62+
trade,
63+
allowedSlippage: percentFromFloat(trade.slippageTolerance),
64+
fiatValues: {
65+
amountIn: analytics.token_in_amount_usd,
66+
amountOut: analytics.token_out_amount_usd,
67+
feeUsd: analytics.fee_usd,
68+
},
69+
portfolioBalanceUsd: analytics.total_balances_usd,
70+
}),
71+
)
5872

5973
try {
6074
yield* call(submitOrder, { signature, quote, routing })

0 commit comments

Comments
 (0)