File tree 3 files changed +9
-8
lines changed
apps/web/src/components/Liquidity
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
IPFS hash of the deployment:
2
- - CIDv0: `QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB `
3
- - CIDv1: `bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy `
2
+ - CIDv0: `QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU `
3
+ - CIDv1: `bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu `
4
4
5
5
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
6
6
@@ -10,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
10
10
Your Uniswap settings are never remembered across different URLs.
11
11
12
12
IPFS gateways:
13
- - https://bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy .ipfs.dweb.link/
14
- - [ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB /](ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB /)
13
+ - https://bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu .ipfs.dweb.link/
14
+ - [ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU /](ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU /)
15
15
16
- ### 5.75.1 (2025-03-05 )
16
+ ### 5.75.2 (2025-03-06 )
17
17
18
18
19
19
### Bug Fixes
20
20
21
- * **web:** add in a polyfill for the buffer (#16989) f12d83e
21
+ * **web:** ensure that tick spacing is a whole number (#17038) 5acf938
22
22
23
23
Original file line number Diff line number Diff line change 1
- web/5.75.1
1
+ web/5.75.2
Original file line number Diff line number Diff line change @@ -387,8 +387,9 @@ export function calculateInvertedValues({
387
387
}
388
388
}
389
389
390
+ // tick spacing must be a whole number >= 1
390
391
export function calculateTickSpacingFromFeeAmount ( feeAmount : number ) : number {
391
- return Math . max ( ( 2 * feeAmount ) / 100 , 1 )
392
+ return Math . max ( Math . round ( ( 2 * feeAmount ) / 100 ) , 1 )
392
393
}
393
394
394
395
export enum HookFlag {
You can’t perform that action at this time.
0 commit comments