ci(release): publish latest release

parent 81aa904b
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB` - CIDv0: `QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU`
- CIDv1: `bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy` - CIDv1: `bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeiakrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy.ipfs.dweb.link/ - https://bafybeiepudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu.ipfs.dweb.link/
- [ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB/](ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB/) - [ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU/](ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU/)
### 5.75.1 (2025-03-05) ### 5.75.2 (2025-03-06)
### Bug Fixes ### Bug Fixes
* **web:** add in a polyfill for the buffer (#16989) f12d83e * **web:** ensure that tick spacing is a whole number (#17038) 5acf938
web/5.75.1 web/5.75.2
\ No newline at end of file \ No newline at end of file
...@@ -387,8 +387,9 @@ export function calculateInvertedValues({ ...@@ -387,8 +387,9 @@ export function calculateInvertedValues({
} }
} }
// tick spacing must be a whole number >= 1
export function calculateTickSpacingFromFeeAmount(feeAmount: number): number { export function calculateTickSpacingFromFeeAmount(feeAmount: number): number {
return Math.max((2 * feeAmount) / 100, 1) return Math.max(Math.round((2 * feeAmount) / 100), 1)
} }
export enum HookFlag { export enum HookFlag {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment