ci(release): publish latest release

parent 1363bd5b
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq` - CIDv0: `QmZ5GePYVnqnekAczBnSNAm8msBT3xzqgkJFwukVQZ1hBf`
- CIDv1: `bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q` - CIDv1: `bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i`
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://bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q.ipfs.dweb.link/ - https://bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i.ipfs.dweb.link/
- https://bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q.ipfs.cf-ipfs.com/ - https://bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i.ipfs.cf-ipfs.com/
- [ipfs://QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq/](ipfs://QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq/) - [ipfs://QmZ5GePYVnqnekAczBnSNAm8msBT3xzqgkJFwukVQZ1hBf/](ipfs://QmZ5GePYVnqnekAczBnSNAm8msBT3xzqgkJFwukVQZ1hBf/)
## 5.52.0 (2024-10-11) ### 5.52.1 (2024-10-15)
### Features ### Bug Fixes
* **web:** remove red gas UI on web shared swap [prod] + 2 other hotfixes (#12948) 18013a2 * **web:** allow pool creation on testnets (#13011) 74160b1
web/5.52.0 web/5.52.1
\ No newline at end of file \ No newline at end of file
import { FeeAmount } from '@uniswap/v3-sdk' import { FeeAmount } from '@uniswap/v3-sdk'
import type { ReactNode } from 'react' import type { ReactNode } from 'react'
import { Trans } from 'uniswap/src/i18n' import { Trans } from 'uniswap/src/i18n'
import { SUPPORTED_CHAIN_IDS, UniverseChainId } from 'uniswap/src/types/chains' import { COMBINED_CHAIN_IDS, UniverseChainId } from 'uniswap/src/types/chains'
export const FEE_AMOUNT_DETAIL: Record< export const FEE_AMOUNT_DETAIL: Record<
FeeAmount, FeeAmount,
...@@ -10,7 +10,7 @@ export const FEE_AMOUNT_DETAIL: Record< ...@@ -10,7 +10,7 @@ export const FEE_AMOUNT_DETAIL: Record<
[FeeAmount.LOWEST]: { [FeeAmount.LOWEST]: {
label: '0.01', label: '0.01',
description: <Trans i18nKey="fee.bestForVeryStable" />, description: <Trans i18nKey="fee.bestForVeryStable" />,
supportedChains: SUPPORTED_CHAIN_IDS, supportedChains: COMBINED_CHAIN_IDS,
}, },
[FeeAmount.LOW_200]: { [FeeAmount.LOW_200]: {
label: '0.02', label: '0.02',
...@@ -27,16 +27,16 @@ export const FEE_AMOUNT_DETAIL: Record< ...@@ -27,16 +27,16 @@ export const FEE_AMOUNT_DETAIL: Record<
[FeeAmount.LOW]: { [FeeAmount.LOW]: {
label: '0.05', label: '0.05',
description: <Trans i18nKey="fee.bestForStablePairs" />, description: <Trans i18nKey="fee.bestForStablePairs" />,
supportedChains: SUPPORTED_CHAIN_IDS, supportedChains: COMBINED_CHAIN_IDS,
}, },
[FeeAmount.MEDIUM]: { [FeeAmount.MEDIUM]: {
label: '0.3', label: '0.3',
description: <Trans i18nKey="fee.bestForMost" />, description: <Trans i18nKey="fee.bestForMost" />,
supportedChains: SUPPORTED_CHAIN_IDS, supportedChains: COMBINED_CHAIN_IDS,
}, },
[FeeAmount.HIGH]: { [FeeAmount.HIGH]: {
label: '1', label: '1',
description: <Trans i18nKey="fee.bestForExotic" />, description: <Trans i18nKey="fee.bestForExotic" />,
supportedChains: SUPPORTED_CHAIN_IDS, supportedChains: COMBINED_CHAIN_IDS,
}, },
} }
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