Skip to content

Commit 7c25a91

Browse files
ci(release): publish latest release
1 parent b8dbf44 commit 7c25a91

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

RELEASE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmPxDxr1NY5yEzWsWVv7TNTTPrGCvAD7ApkJvwQnDYmywQ`
3-
- CIDv1: `bafybeiax7co2kf2lwvojqnkvh5ypifsj2kbumrj3o4zaafksonb6cg2sim`
2+
- CIDv0: `QmcYMdsAamDL5JXsTHJoaDfe5tRusMchgY16GHvZPw3FdL`
3+
- CIDv1: `bafybeigtanedhtzthj4dakypah5gdinm5oh3q74e5lnkbhjpbhjtzvjaem`
44

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

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

1212
IPFS gateways:
13-
- https://bafybeiax7co2kf2lwvojqnkvh5ypifsj2kbumrj3o4zaafksonb6cg2sim.ipfs.dweb.link/
14-
- [ipfs://QmPxDxr1NY5yEzWsWVv7TNTTPrGCvAD7ApkJvwQnDYmywQ/](ipfs://QmPxDxr1NY5yEzWsWVv7TNTTPrGCvAD7ApkJvwQnDYmywQ/)
13+
- https://bafybeigtanedhtzthj4dakypah5gdinm5oh3q74e5lnkbhjpbhjtzvjaem.ipfs.dweb.link/
14+
- [ipfs://QmcYMdsAamDL5JXsTHJoaDfe5tRusMchgY16GHvZPw3FdL/](ipfs://QmcYMdsAamDL5JXsTHJoaDfe5tRusMchgY16GHvZPw3FdL/)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.146.1
1+
web/5.146.2

apps/web/src/features/Liquidity/Create/SelectTokenStep.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,11 @@ export function SelectTokensStep({
323323
return undefined
324324
}
325325

326+
// Only enforce native ETH on pool creation; allow WETH when adding liquidity to an existing pool.
327+
if (!creatingPoolOrPair) {
328+
return undefined
329+
}
330+
326331
if (hook && allowedV4WethHookAddresses.includes(hook)) {
327332
return undefined
328333
}
@@ -357,7 +362,7 @@ export function SelectTokensStep({
357362

358363
setShowWrappedNativeWarning(false)
359364
return undefined
360-
}, [token0, token1, protocolVersion, hook, allowedV4WethHookAddresses])
365+
}, [token0, token1, protocolVersion, hook, allowedV4WethHookAddresses, creatingPoolOrPair])
361366

362367
const token0CurrencyInfo = useCurrencyInfo(currencyId(token0))
363368
const token1CurrencyInfo = useCurrencyInfo(currencyId(token1))

0 commit comments

Comments
 (0)