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 15, 2024
1 parent 1363bd5 commit 40c26d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -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).

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://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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.52.0
web/5.52.1
10 changes: 5 additions & 5 deletions apps/web/src/components/FeeSelector/shared.tsx
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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',
Expand All @@ -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,
},
}

0 comments on commit 40c26d3

Please sign in to comment.