ci(release): publish latest release

parent d35576ed
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF` - CIDv0: `QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA`
- CIDv1: `bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq` - CIDv1: `bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre`
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,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,15 +10,15 @@ 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://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.dweb.link/ - https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.dweb.link/
- https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.cf-ipfs.com/ - https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.cf-ipfs.com/
- [ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/](ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/) - [ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/](ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/)
### 5.51.4 (2024-10-10) ### 5.51.5 (2024-10-10)
### Bug Fixes ### Bug Fixes
* **web:** enable token swap on non mainnet tdp for legacy swap - prod (#12900) cb91f9e * **web:** log SWAP_SIGNED from uniswapx saga [prod] (#12905) f97523f
web/5.51.4 web/5.51.5
\ No newline at end of file \ No newline at end of file
import { SwapEventName } from '@uniswap/analytics-events'
import { formatSwapSignedAnalyticsEventProperties } from 'lib/utils/analytics' import { formatSwapSignedAnalyticsEventProperties } from 'lib/utils/analytics'
import { PopupType, addPopup } from 'state/application/reducer' import { PopupType, addPopup } from 'state/application/reducer'
import { import {
...@@ -55,6 +56,19 @@ export function* handleUniswapXSignatureStep(params: HandleUniswapXSignatureStep ...@@ -55,6 +56,19 @@ export function* handleUniswapXSignatureStep(params: HandleUniswapXSignatureStep
} }
addTransactionBreadcrumb({ step, data: { routing, ...signatureDetails.swapInfo }, status: 'in progress' }) addTransactionBreadcrumb({ step, data: { routing, ...signatureDetails.swapInfo }, status: 'in progress' })
sendAnalyticsEvent(
SwapEventName.SWAP_SIGNED,
formatSwapSignedAnalyticsEventProperties({
trade,
allowedSlippage: percentFromFloat(trade.slippageTolerance),
fiatValues: {
amountIn: analytics.token_in_amount_usd,
amountOut: analytics.token_out_amount_usd,
feeUsd: analytics.fee_usd,
},
portfolioBalanceUsd: analytics.total_balances_usd,
}),
)
try { try {
yield* call(submitOrder, { signature, quote, routing }) yield* call(submitOrder, { signature, quote, routing })
......
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