Skip to content

Commit 1088b81

Browse files
ci(release): publish latest release
1 parent 81aa904 commit 1088b81

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

RELEASE

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB`
3-
- CIDv1: `bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy`
2+
- CIDv0: `QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU`
3+
- CIDv1: `bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu`
44

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

@@ -10,14 +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://bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy.ipfs.dweb.link/
14-
- [ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB/](ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB/)
13+
- https://bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu.ipfs.dweb.link/
14+
- [ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU/](ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU/)
1515

16-
### 5.75.1 (2025-03-05)
16+
### 5.75.2 (2025-03-06)
1717

1818

1919
### Bug Fixes
2020

21-
* **web:** add in a polyfill for the buffer (#16989) f12d83e
21+
* **web:** ensure that tick spacing is a whole number (#17038) 5acf938
2222

2323

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.75.1
1+
web/5.75.2

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,9 @@ export function calculateInvertedValues({
387387
}
388388
}
389389

390+
// tick spacing must be a whole number >= 1
390391
export function calculateTickSpacingFromFeeAmount(feeAmount: number): number {
391-
return Math.max((2 * feeAmount) / 100, 1)
392+
return Math.max(Math.round((2 * feeAmount) / 100), 1)
392393
}
393394

394395
export enum HookFlag {

0 commit comments

Comments
 (0)