diff --git a/RELEASE b/RELEASE
index 2f4f08ee150..4f7619c0d2d 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,6 +1,6 @@
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
diff --git a/VERSION b/VERSION
index 788ab5531a5..d6a1294af65 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-web/5.52.0
\ No newline at end of file
+web/5.52.1
\ No newline at end of file
diff --git a/apps/web/src/components/FeeSelector/shared.tsx b/apps/web/src/components/FeeSelector/shared.tsx
index e43ceda2bac..7e52b11dea1 100644
--- a/apps/web/src/components/FeeSelector/shared.tsx
+++ b/apps/web/src/components/FeeSelector/shared.tsx
@@ -1,7 +1,7 @@
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: ,
- 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: ,
- supportedChains: SUPPORTED_CHAIN_IDS,
+ supportedChains: COMBINED_CHAIN_IDS,
},
[FeeAmount.MEDIUM]: {
label: '0.3',
description: ,
- supportedChains: SUPPORTED_CHAIN_IDS,
+ supportedChains: COMBINED_CHAIN_IDS,
},
[FeeAmount.HIGH]: {
label: '1',
description: ,
- supportedChains: SUPPORTED_CHAIN_IDS,
+ supportedChains: COMBINED_CHAIN_IDS,
},
}