ci(release): publish latest release

parent 1363bd5b
IPFS hash of the deployment:
- CIDv0: `QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq`
- CIDv1: `bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q`
- CIDv0: `QmZ5GePYVnqnekAczBnSNAm8msBT3xzqgkJFwukVQZ1hBf`
- CIDv1: `bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i`
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.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q.ipfs.dweb.link/
- https://bafybeie2mrhbxzypdlpnuhuxdtlhsdvuxtdmrawrp3hl6oufdrwyybhs5q.ipfs.cf-ipfs.com/
- [ipfs://QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq/](ipfs://QmYjLCs2fp85NtK5CYeZBisiUZdf9ZLWBfaQ4CSG67qUyq/)
- https://bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i.ipfs.dweb.link/
- https://bafybeie7p7swozshq4rt5lc2uzdtauviqpr2xhr5rghmyyuqoiggsgpv5i.ipfs.cf-ipfs.com/
- [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
\ No newline at end of file
web/5.52.1
\ No newline at end of file
import { FeeAmount } from '@uniswap/v3-sdk'
import type { ReactNode } from 'react'
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<
FeeAmount,
......@@ -10,7 +10,7 @@ export const FEE_AMOUNT_DETAIL: Record<
[FeeAmount.LOWEST]: {
label: '0.01',
description: <Trans i18nKey="fee.bestForVeryStable" />,
supportedChains: SUPPORTED_CHAIN_IDS,
supportedChains: COMBINED_CHAIN_IDS,
},
[FeeAmount.LOW_200]: {
label: '0.02',
......@@ -27,16 +27,16 @@ export const FEE_AMOUNT_DETAIL: Record<
[FeeAmount.LOW]: {
label: '0.05',
description: <Trans i18nKey="fee.bestForStablePairs" />,
supportedChains: SUPPORTED_CHAIN_IDS,
supportedChains: COMBINED_CHAIN_IDS,
},
[FeeAmount.MEDIUM]: {
label: '0.3',
description: <Trans i18nKey="fee.bestForMost" />,
supportedChains: SUPPORTED_CHAIN_IDS,
supportedChains: COMBINED_CHAIN_IDS,
},
[FeeAmount.HIGH]: {
label: '1',
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