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
7e5fa893
Commit
7e5fa893
authored
May 02, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
a4628152
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
30 deletions
+26
-30
RELEASE
RELEASE
+11
-6
VERSION
VERSION
+1
-1
animations.tsx
apps/web/src/pages/Landing/components/animations.tsx
+14
-23
No files found.
RELEASE
View file @
7e5fa893
IPFS hash of the deployment:
- CIDv0: `Qm
XVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w
`
- CIDv1: `bafybei
eidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea
`
- CIDv0: `Qm
UBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe
`
- CIDv1: `bafybei
cw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um
`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
...
@@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
- https://bafybei
eidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea
.ipfs.dweb.link/
- https://bafybei
eidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea
.ipfs.cf-ipfs.com/
- [ipfs://Qm
XVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/](ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w
/)
- https://bafybei
cw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um
.ipfs.dweb.link/
- https://bafybei
cw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um
.ipfs.cf-ipfs.com/
- [ipfs://Qm
UBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe/](ipfs://QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe
/)
### 5.25.5 (2024-04-30)
### 5.25.6 (2024-05-02)
### Bug Fixes
* **web:** hotfix performance issue with floating text on homepage (#7952) eca0be7
VERSION
View file @
7e5fa893
web/5.25.5
\ No newline at end of file
web/5.25.6
\ No newline at end of file
apps/web/src/pages/Landing/components/animations.tsx
View file @
7e5fa893
import
{
motion
}
from
'
framer-motion
'
import
styled
,
{
css
,
keyframes
}
from
'
styled-components
'
type
RiseInProps
=
{
delay
?:
number
children
?:
React
.
ReactNode
}
const
riseInAnimation
=
keyframes
`
0% {
opacity: 0;
...
...
@@ -41,24 +36,20 @@ export const RiseIn = styled.span<{ delay?: number }>`
$
{
RiseInStyles
}
`
export
const
Hover
=
(
props
:
RiseInProps
)
=>
{
return
(
<
motion
.
div
animate=
{
{
y
:
[
'
-4px
'
,
'
4px
'
,
'
-4px
'
],
opacity
:
[
0.5
,
1
,
0.5
],
}
}
transition=
{
{
duration
:
2
,
repeat
:
Infinity
,
// repeat animation forever
ease
:
'
easeInOut
'
,
}
}
style=
{
{
display
:
'
inline-block
'
,
position
:
'
relative
'
}
}
>
{
props
.
children
}
</
motion
.
div
>
)
}
const
hoverAnimation
=
keyframes
`
0% { transform: translateY(-4px); opacity: 0.5; }
50% { transform: translateY(4px); opacity: 1; }
100% { transform: translateY(-4px); opacity: 0.5; }
`
export
const
Hover
=
styled
.
div
`
position: relative;
display: inline-block;
animation-name:
${
hoverAnimation
}
;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
`
export
function
Wiggle
({
...
props
})
{
const
variants
=
{
...
...
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