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
bf8a5be4
Commit
bf8a5be4
authored
Feb 27, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
f6bc948a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
30 deletions
+20
-30
RELEASE
RELEASE
+7
-13
VERSION
VERSION
+1
-1
SwapHeader.tsx
apps/web/src/components/swap/SwapHeader.tsx
+1
-10
LimitForm.tsx
apps/web/src/pages/Swap/Limit/LimitForm.tsx
+5
-3
SendForm.tsx
apps/web/src/pages/Swap/Send/SendForm.tsx
+6
-3
No files found.
RELEASE
View file @
bf8a5be4
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
SyV4dNhjeqsxaKHkFZyqyLKGaqBUkgr5fb1FDZN24yY5
`
- CIDv0: `Qm
QHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH
`
- CIDv1: `bafybei
ce3zkknbq42szpbonaebytodvjc7rddzz3v5rc4hd6wjts6t2usi
`
- CIDv1: `bafybei
a424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q
`
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,21 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,21 +10,15 @@ 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://bafybei
ce3zkknbq42szpbonaebytodvjc7rddzz3v5rc4hd6wjts6t2usi
.ipfs.dweb.link/
- https://bafybei
a424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q
.ipfs.dweb.link/
- https://bafybei
ce3zkknbq42szpbonaebytodvjc7rddzz3v5rc4hd6wjts6t2usi
.ipfs.cf-ipfs.com/
- https://bafybei
a424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q
.ipfs.cf-ipfs.com/
- [ipfs://Qm
SyV4dNhjeqsxaKHkFZyqyLKGaqBUkgr5fb1FDZN24yY5/](ipfs://QmSyV4dNhjeqsxaKHkFZyqyLKGaqBUkgr5fb1FDZN24yY5
/)
- [ipfs://Qm
QHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH/](ipfs://QmQHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH
/)
## 5.14.0 (2024-02-27)
### 5.14.1 (2024-02-27)
### Features
* **web:** add disclaimer to limits review modal (#6597) f1cb196
### Bug Fixes
### Bug Fixes
* **web:** fix expiry line item (#6596) 7225ae9
* **web:** analytics fix for limits [hotfix for prod] (#6602) f1133af
* **web:** use page chain for liquidity chart (#6582) 4e89b28
VERSION
View file @
bf8a5be4
web/5.14.0
web/5.14.1
\ No newline at end of file
\ No newline at end of file
apps/web/src/components/swap/SwapHeader.tsx
View file @
bf8a5be4
...
@@ -59,17 +59,9 @@ export default function SwapHeader({ compact, syncTabToUrl }: { compact: boolean
...
@@ -59,17 +59,9 @@ export default function SwapHeader({ compact, syncTabToUrl }: { compact: boolean
setCurrentTab
(
SwapTab
.
Swap
)
setCurrentTab
(
SwapTab
.
Swap
)
}
}
const
onClickTab
=
(
tab
:
SwapTab
)
=>
(
e
:
React
.
KeyboardEvent
<
HTMLHeadingElement
|
HTMLButtonElement
>
)
=>
{
if
(
e
.
key
===
'
Enter
'
||
e
.
key
===
'
Space
'
)
{
e
.
preventDefault
()
setCurrentTab
(
tab
)
}
sendAnalyticsEvent
(
'
Swap Tab Clicked
'
,
{
tab
})
}
const
onTab
=
useCallback
(
const
onTab
=
useCallback
(
(
tab
:
SwapTab
)
=>
{
(
tab
:
SwapTab
)
=>
{
sendAnalyticsEvent
(
'
Swap Tab Clicked
'
,
{
tab
})
if
(
syncTabToUrl
)
{
if
(
syncTabToUrl
)
{
navigate
(
`/
${
tab
}
`
,
{
replace
:
true
})
navigate
(
`/
${
tab
}
`
,
{
replace
:
true
})
}
else
{
}
else
{
...
@@ -90,7 +82,6 @@ export default function SwapHeader({ compact, syncTabToUrl }: { compact: boolean
...
@@ -90,7 +82,6 @@ export default function SwapHeader({ compact, syncTabToUrl }: { compact: boolean
onClick=
{
()
=>
{
onClick=
{
()
=>
{
onTab
(
SwapTab
.
Swap
)
onTab
(
SwapTab
.
Swap
)
}
}
}
}
onKeyDown=
{
onClickTab
(
SwapTab
.
Swap
)
}
>
>
<
Trans
>
Swap
</
Trans
>
<
Trans
>
Swap
</
Trans
>
</
SwapHeaderTabButton
>
</
SwapHeaderTabButton
>
...
...
apps/web/src/pages/Swap/Limit/LimitForm.tsx
View file @
bf8a5be4
...
@@ -421,8 +421,10 @@ function SubmitOrderButton({
...
@@ -421,8 +421,10 @@ function SubmitOrderButton({
export
function
LimitFormWrapper
(
props
:
LimitFormProps
)
{
export
function
LimitFormWrapper
(
props
:
LimitFormProps
)
{
return
(
return
(
<
Trace
page=
"limit-page"
>
<
LimitContextProvider
>
<
LimitContextProvider
>
<
LimitForm
{
...
props
}
/>
<
LimitForm
{
...
props
}
/>
</
LimitContextProvider
>
</
LimitContextProvider
>
</
Trace
>
)
)
}
}
apps/web/src/pages/Swap/Send/SendForm.tsx
View file @
bf8a5be4
...
@@ -16,6 +16,7 @@ import { CurrencyState, useSwapAndLimitContext } from 'state/swap/SwapContext'
...
@@ -16,6 +16,7 @@ import { CurrencyState, useSwapAndLimitContext } from 'state/swap/SwapContext'
import
{
didUserReject
}
from
'
utils/swapErrorToUserReadableMessage
'
import
{
didUserReject
}
from
'
utils/swapErrorToUserReadableMessage
'
import
{
useIsSmartContractAddress
}
from
'
utils/transfer
'
import
{
useIsSmartContractAddress
}
from
'
utils/transfer
'
import
{
Trace
}
from
'
analytics
'
import
{
NewAddressSpeedBumpModal
}
from
'
./NewAddressSpeedBump
'
import
{
NewAddressSpeedBumpModal
}
from
'
./NewAddressSpeedBump
'
import
SendCurrencyInputForm
from
'
./SendCurrencyInputForm
'
import
SendCurrencyInputForm
from
'
./SendCurrencyInputForm
'
import
{
SendRecipientForm
}
from
'
./SendRecipientForm
'
import
{
SendRecipientForm
}
from
'
./SendRecipientForm
'
...
@@ -245,8 +246,10 @@ function SendFormInner({ disableTokenInputs = false, onCurrencyChange }: SendFor
...
@@ -245,8 +246,10 @@ function SendFormInner({ disableTokenInputs = false, onCurrencyChange }: SendFor
export
function
SendForm
(
props
:
SendFormProps
)
{
export
function
SendForm
(
props
:
SendFormProps
)
{
return
(
return
(
<
Trace
page=
"send-page"
>
<
SendContextProvider
>
<
SendContextProvider
>
<
SendFormInner
{
...
props
}
/>
<
SendFormInner
{
...
props
}
/>
</
SendContextProvider
>
</
SendContextProvider
>
</
Trace
>
)
)
}
}
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