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
a4c7d74d
Commit
a4c7d74d
authored
Feb 02, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
1da024d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
10 deletions
+11
-10
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
useUniswapXSwapCallback.ts
apps/web/src/hooks/useUniswapXSwapCallback.ts
+3
-2
No files found.
RELEASE
View file @
a4c7d74d
IPFS hash of the deployment:
- CIDv0: `Qm
Q7NhMzZjWwmzHeuQT8PwZCMvvAzDQrXWFCDe3Mqx414a
`
- CIDv1: `bafybei
a2kc33gaewnivhsxglgbtpvdeo2rqwufsgkaurutq3jyxnsoygw4
`
- CIDv0: `Qm
djDNB3pLDraC6Wo2qppRvziqBWvG6SEVd7gJ9sGjnUWW
`
- CIDv1: `bafybei
heu4az5ymdraneuxsvbwsedbsxvyufdqqrxrlnl2dlujrfmvaxam
`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
...
@@ -10,15 +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
a2kc33gaewnivhsxglgbtpvdeo2rqwufsgkaurutq3jyxnsoygw4
.ipfs.dweb.link/
- https://bafybei
a2kc33gaewnivhsxglgbtpvdeo2rqwufsgkaurutq3jyxnsoygw4
.ipfs.cf-ipfs.com/
- [ipfs://Qm
Q7NhMzZjWwmzHeuQT8PwZCMvvAzDQrXWFCDe3Mqx414a/](ipfs://QmQ7NhMzZjWwmzHeuQT8PwZCMvvAzDQrXWFCDe3Mqx414a
/)
- https://bafybei
heu4az5ymdraneuxsvbwsedbsxvyufdqqrxrlnl2dlujrfmvaxam
.ipfs.dweb.link/
- https://bafybei
heu4az5ymdraneuxsvbwsedbsxvyufdqqrxrlnl2dlujrfmvaxam
.ipfs.cf-ipfs.com/
- [ipfs://Qm
djDNB3pLDraC6Wo2qppRvziqBWvG6SEVd7gJ9sGjnUWW/](ipfs://QmdjDNB3pLDraC6Wo2qppRvziqBWvG6SEVd7gJ9sGjnUWW
/)
### 5.6.
1 (2024-01-30
)
### 5.6.
2 (2024-02-02
)
### Bug Fixes
* **web:**
send flow UI fixes [hotfix] (#6026) cbffa89
* **web:**
Add one to UniswapX nonce and lowercase swapper address [hotfix] (#6113) 10eb5b1
VERSION
View file @
a4c7d74d
web/5.6.1
\ No newline at end of file
web/5.6.2
\ No newline at end of file
apps/web/src/hooks/useUniswapXSwapCallback.ts
View file @
a4c7d74d
...
...
@@ -41,9 +41,10 @@ async function getUpdatedNonce(
):
Promise
<
BigNumber
|
null
>
{
const
baseURL
=
gatewayDNSUpdateAllEnabled
?
UNISWAP_GATEWAY_DNS_URL
:
UNISWAP_API_URL
try
{
const
res
=
await
fetch
(
`
${
baseURL
}
/nonce?address=
${
swapper
}
&chainId=
${
chainId
}
`
)
// endpoint fetches current nonce
const
res
=
await
fetch
(
`
${
baseURL
}
/nonce?address=
${
swapper
.
toLowerCase
()}
&chainId=
${
chainId
}
`
)
const
{
nonce
}
=
await
res
.
json
()
return
BigNumber
.
from
(
nonce
)
return
BigNumber
.
from
(
nonce
)
.
add
(
1
)
}
catch
(
e
)
{
Sentry
.
withScope
(
function
(
scope
)
{
scope
.
setTag
(
'
method
'
,
'
getUpdatedNonce
'
)
...
...
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