Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Oct 10, 2024
1 parent d35576e commit a510762
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
14 changes: 7 additions & 7 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF`
- CIDv1: `bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq`
- CIDv0: `QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA`
- CIDv1: `bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre`

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

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

IPFS gateways:
- https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.dweb.link/
- https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.cf-ipfs.com/
- [ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/](ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/)
- https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.dweb.link/
- https://bafybeieh2xjjbov446lej5oq3hq2he57ubqlebubjh7g2d2467zpxyzjre.ipfs.cf-ipfs.com/
- [ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/](ipfs://QmXUtrWeU2GPTnLUjuZ6akPxYxa8H6xRC79ebSVJn9Z5hA/)

### 5.51.4 (2024-10-10)
### 5.51.5 (2024-10-10)


### 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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.51.4
web/5.51.5
14 changes: 14 additions & 0 deletions apps/web/src/state/sagas/transactions/uniswapx.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { SwapEventName } from '@uniswap/analytics-events'
import { formatSwapSignedAnalyticsEventProperties } from 'lib/utils/analytics'
import { PopupType, addPopup } from 'state/application/reducer'
import {
Expand Down Expand Up @@ -55,6 +56,19 @@ export function* handleUniswapXSignatureStep(params: HandleUniswapXSignatureStep
}

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 {
yield* call(submitOrder, { signature, quote, routing })
Expand Down

0 comments on commit a510762

Please sign in to comment.