Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
1088b817
Commit
1088b817
authored
Mar 06, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
81aa904b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
RELEASE
RELEASE
+6
-6
VERSION
VERSION
+1
-1
utils.tsx
apps/web/src/components/Liquidity/utils.tsx
+2
-1
No files found.
RELEASE
View file @
1088b817
IPFS hash of the deployment:
- CIDv0: `Qm
P3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB
`
- CIDv1: `bafybei
akrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy
`
- CIDv0: `Qm
Y1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU
`
- CIDv1: `bafybei
epudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu
`
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.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybei
akrogvp4snzi4cbzvnt2ng22ojyuizj4jmbhwbzicaw376jlrpyy
.ipfs.dweb.link/
- [ipfs://Qm
P3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB/](ipfs://QmP3pCy1NW2irnCjSR3APtUyRmxsbWLxGmLScQYJHKF6mB
/)
- https://bafybei
epudn33fn7she525pbbiq6vlylmo4ujkvbrzdbkxud5qevpnddxu
.ipfs.dweb.link/
- [ipfs://Qm
Y1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU/](ipfs://QmY1KGrtefyx6c622uKgMsF3wdgcHrctuPjx6FKEXtbTaU
/)
### 5.75.
1 (2025-03-05
)
### 5.75.
2 (2025-03-06
)
### Bug Fixes
* **web:**
add in a polyfill for the buffer (#16989) f12d83e
* **web:**
ensure that tick spacing is a whole number (#17038) 5acf938
VERSION
View file @
1088b817
web/5.75.1
\ No newline at end of file
web/5.75.2
\ No newline at end of file
apps/web/src/components/Liquidity/utils.tsx
View file @
1088b817
...
...
@@ -387,8 +387,9 @@ export function calculateInvertedValues({
}
}
// tick spacing must be a whole number >= 1
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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment