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
569072d5
Commit
569072d5
authored
May 13, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
c580e7f7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
13 deletions
+15
-13
RELEASE
RELEASE
+10
-5
VERSION
VERSION
+1
-1
handleGetCapabilities.test.ts
...tate/walletCapabilities/lib/handleGetCapabilities.test.ts
+1
-1
handleGetCapabilities.ts
...src/state/walletCapabilities/lib/handleGetCapabilities.ts
+1
-4
reducer.test.ts
apps/web/src/state/walletCapabilities/reducer.test.ts
+2
-2
No files found.
RELEASE
View file @
569072d5
IPFS hash of the deployment:
- CIDv0: `Qm
PrqLALpGaKqo51BdmEzdEk1gqMYoigWqcSrSRjB359us
`
- CIDv1: `bafybei
aws4pqenzmeqsuoufsgcyhgtxc5azas2dsnh6i25xpe75b3rybti
`
- CIDv0: `Qm
ezmXSutzznthvc6pSCrb7JgxjGqXFNCWCZLjADjg6Tf8
`
- CIDv1: `bafybei
hxp3cmskdb4nr76bocjhdgq32ykbfquxwakbdx33iehf44jxwuim
`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
...
@@ -10,9 +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
aws4pqenzmeqsuoufsgcyhgtxc5azas2dsnh6i25xpe75b3rybti
.ipfs.dweb.link/
- [ipfs://Qm
PrqLALpGaKqo51BdmEzdEk1gqMYoigWqcSrSRjB359us/](ipfs://QmPrqLALpGaKqo51BdmEzdEk1gqMYoigWqcSrSRjB359us
/)
- https://bafybei
hxp3cmskdb4nr76bocjhdgq32ykbfquxwakbdx33iehf44jxwuim
.ipfs.dweb.link/
- [ipfs://Qm
ezmXSutzznthvc6pSCrb7JgxjGqXFNCWCZLjADjg6Tf8/](ipfs://QmezmXSutzznthvc6pSCrb7JgxjGqXFNCWCZLjADjg6Tf8
/)
### 5.83.6 (2025-05-08)
### 5.83.7 (2025-05-13)
### Bug Fixes
* **web:** only support batch swaps on supported status (#19566) da9a5ec
VERSION
View file @
569072d5
web/5.83.6
\ No newline at end of file
web/5.83.7
\ No newline at end of file
apps/web/src/state/walletCapabilities/lib/handleGetCapabilities.test.ts
View file @
569072d5
...
...
@@ -77,7 +77,7 @@ describe('walletCapabilities', () => {
expect
(
isAtomicBatchingSupportedByChainId
(
mockCapabilities
,
1
)).
toBe
(
true
)
const
readyCapabilities
:
GetCapabilitiesResult
=
{
'
0x1
'
:
{
atomic
:
{
status
:
'
ready
'
}
}
}
expect
(
isAtomicBatchingSupportedByChainId
(
readyCapabilities
,
1
)).
toBe
(
tru
e
)
expect
(
isAtomicBatchingSupportedByChainId
(
readyCapabilities
,
1
)).
toBe
(
fals
e
)
const
unsupportedCapabilities
:
GetCapabilitiesResult
=
{
'
0x1
'
:
{
atomic
:
{
status
:
'
unsupported
'
}
}
}
expect
(
isAtomicBatchingSupportedByChainId
(
unsupportedCapabilities
,
1
)).
toBe
(
false
)
...
...
apps/web/src/state/walletCapabilities/lib/handleGetCapabilities.ts
View file @
569072d5
...
...
@@ -51,10 +51,7 @@ enum AtomicBatchingStatus {
}
export
function
isAtomicBatchingSupported
(
chainCapabilities
:
ChainCapabilities
):
boolean
{
return
(
chainCapabilities
?.
atomic
?.
status
===
AtomicBatchingStatus
.
Supported
||
chainCapabilities
?.
atomic
?.
status
===
AtomicBatchingStatus
.
Ready
)
return
chainCapabilities
?.
atomic
?.
status
===
AtomicBatchingStatus
.
Supported
}
export
function
isAtomicBatchingSupportedByChainId
(
...
...
apps/web/src/state/walletCapabilities/reducer.test.ts
View file @
569072d5
...
...
@@ -134,7 +134,7 @@ describe('walletCapabilities reducer', () => {
// Test various chain IDs
expect
(
selector
(
1
)).
toBe
(
true
)
// Chain 1 has status 'supported'
expect
(
selector
(
2
)).
toBe
(
tru
e
)
// Chain 2 has status 'ready'
expect
(
selector
(
2
)).
toBe
(
fals
e
)
// Chain 2 has status 'ready'
expect
(
selector
(
3
)).
toBe
(
false
)
// Chain 3 has status 'unsupported'
expect
(
selector
(
4
)).
toBe
(
false
)
// Chain 4 has no atomic capability
expect
(
selector
(
999
)).
toBe
(
false
)
// Chain 999 not in map
...
...
@@ -148,7 +148,7 @@ describe('walletCapabilities reducer', () => {
// This tests that the internal helper correctly evaluates string values
const
testCases
=
[
{
chainId
:
'
0x1
'
,
atomicStatus
:
'
supported
'
,
expected
:
true
},
{
chainId
:
'
0x2
'
,
atomicStatus
:
'
ready
'
,
expected
:
tru
e
},
{
chainId
:
'
0x2
'
,
atomicStatus
:
'
ready
'
,
expected
:
fals
e
},
{
chainId
:
'
0x3
'
,
atomicStatus
:
'
unsupported
'
,
expected
:
false
},
{
chainId
:
'
0x4
'
,
atomicStatus
:
'
something-else
'
,
expected
:
false
},
{
chainId
:
'
0x5
'
,
atomicStatus
:
undefined
,
expected
:
false
},
...
...
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