Skip to content

Commit c2d756c

Browse files
ci(release): publish latest release
1 parent 947fedc commit c2d756c

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

RELEASE

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmVSBSXs5YKGxoQRMTooop6QXxPSEYapNhs6AoRXF9iEjf`
3-
- CIDv1: `bafybeidjnr27fk4owtjmksfokdkfiw7uz7iolqaj22ylbyjwf3jmlvfpuy`
2+
- CIDv0: `Qmf9VyaEw3KqvQaZTWZY8UYwrnTJCUivsGrHWMCK1oRGEH`
3+
- CIDv1: `bafybeihzxnu76gdxgtsydjnpqnqtynsoz23do4kavynn337hzfij2euwxy`
44

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

@@ -10,9 +10,14 @@ 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://bafybeidjnr27fk4owtjmksfokdkfiw7uz7iolqaj22ylbyjwf3jmlvfpuy.ipfs.dweb.link/
14-
- [ipfs://QmVSBSXs5YKGxoQRMTooop6QXxPSEYapNhs6AoRXF9iEjf/](ipfs://QmVSBSXs5YKGxoQRMTooop6QXxPSEYapNhs6AoRXF9iEjf/)
13+
- https://bafybeihzxnu76gdxgtsydjnpqnqtynsoz23do4kavynn337hzfij2euwxy.ipfs.dweb.link/
14+
- [ipfs://Qmf9VyaEw3KqvQaZTWZY8UYwrnTJCUivsGrHWMCK1oRGEH/](ipfs://Qmf9VyaEw3KqvQaZTWZY8UYwrnTJCUivsGrHWMCK1oRGEH/)
1515

16-
### 5.104.3 (2025-07-31)
16+
### 5.104.4 (2025-08-01)
17+
18+
19+
### Bug Fixes
20+
21+
* **web:** [lp] undefined check for tickUpper or tickLower since 0 is … (#22266) 7a73f13
1722

1823

VERSION

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

apps/web/src/components/Liquidity/ClaimFeeModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ export function ClaimFeeModal() {
140140
tickSpacing: positionInfo.tickSpacing ? Number(positionInfo.tickSpacing) : undefined,
141141
hooks: positionInfo.v4hook,
142142
},
143-
tickLower: positionInfo.tickLower ? Number(positionInfo.tickLower) : undefined,
144-
tickUpper: positionInfo.tickUpper ? Number(positionInfo.tickUpper) : undefined,
143+
tickLower: positionInfo.tickLower !== undefined ? positionInfo.tickLower : undefined,
144+
tickUpper: positionInfo.tickUpper !== undefined ? positionInfo.tickUpper : undefined,
145145
},
146146
expectedTokenOwed0RawAmount: positionInfo.version !== ProtocolVersion.V4 ? token0UncollectedFees : undefined,
147147
expectedTokenOwed1RawAmount: positionInfo.version !== ProtocolVersion.V4 ? token1UncollectedFees : undefined,

apps/web/src/pages/IncreaseLiquidity/IncreaseLiquidityTxContext.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ export function IncreaseLiquidityTxContextProvider({ children }: PropsWithChildr
194194
independentToken,
195195
defaultDependentAmount: positionInfo.version === ProtocolVersion.V2 ? dependentAmount : undefined,
196196
position: {
197-
tickLower: positionInfo.tickLower ? Number(positionInfo.tickLower) : undefined,
198-
tickUpper: positionInfo.tickUpper ? Number(positionInfo.tickUpper) : undefined,
197+
tickLower: positionInfo.tickLower !== undefined ? positionInfo.tickLower : undefined,
198+
tickUpper: positionInfo.tickUpper !== undefined ? positionInfo.tickUpper : undefined,
199199
pool: {
200200
token0: token0.isNative ? ZERO_ADDRESS : token0.address,
201201
token1: token1.isNative ? ZERO_ADDRESS : token1.address,

apps/web/src/pages/MigrateV3/MigrateV3LiquidityTxContext.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export function MigrateV3PositionTxContextProvider({
135135
fee: positionInfo.feeTier?.feeAmount,
136136
tickSpacing: positionInfo.tickSpacing ? Number(positionInfo.tickSpacing) : undefined,
137137
},
138-
tickLower: positionInfo.tickLower ? Number(positionInfo.tickLower) : undefined,
139-
tickUpper: positionInfo.tickUpper ? Number(positionInfo.tickUpper) : undefined,
138+
tickLower: positionInfo.tickLower !== undefined ? positionInfo.tickLower : undefined,
139+
tickUpper: positionInfo.tickUpper !== undefined ? positionInfo.tickUpper : undefined,
140140
},
141141
inputPoolLiquidity: positionInfo.pool.liquidity.toString(),
142142
inputCurrentTick: positionInfo.pool.tickCurrent,

apps/web/src/pages/RemoveLiquidity/hooks/useRemoveLiquidityTxAndGasInfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ export function useRemoveLiquidityTxAndGasInfo({ account }: { account?: string }
103103
expectedTokenOwed0RawAmount: positionInfo.version !== ProtocolVersion.V4 ? token0UncollectedFees : undefined,
104104
expectedTokenOwed1RawAmount: positionInfo.version !== ProtocolVersion.V4 ? token1UncollectedFees : undefined,
105105
position: {
106-
tickLower: positionInfo.tickLower ? Number(positionInfo.tickLower) : undefined,
107-
tickUpper: positionInfo.tickUpper ? Number(positionInfo.tickUpper) : undefined,
106+
tickLower: positionInfo.tickLower !== undefined ? positionInfo.tickLower : undefined,
107+
tickUpper: positionInfo.tickUpper !== undefined ? positionInfo.tickUpper : undefined,
108108
pool: {
109109
token0: getTokenOrZeroAddress(currency0),
110110
token1: getTokenOrZeroAddress(currency1),

0 commit comments

Comments
 (0)