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
1bf6943a
Commit
1bf6943a
authored
Feb 26, 2025
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
c42b0551
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
6 deletions
+22
-6
RELEASE
RELEASE
+10
-5
VERSION
VERSION
+1
-1
configs.ts
packages/uniswap/src/features/gating/configs.ts
+1
-0
usePollingIntervalByChain.ts
...ures/transactions/swap/hooks/usePollingIntervalByChain.ts
+10
-0
No files found.
RELEASE
View file @
1bf6943a
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
QZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV
`
- CIDv0: `Qm
SHXp5oNAxME6KY7LJy4ndnuBfL3ujQ67aMiPuTUuQ66g
`
- CIDv1: `bafybeib
bbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq
`
- CIDv1: `bafybeib
2ui2plf3zbinsp24o4d5ir66yr4a3qlg55kswt2rmlgkoomvigu
`
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,9 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,9 +10,14 @@ 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://bafybeib
bbmxslnkqathnm7vryt3oxm6pcjcwyc7s4c7u2agjr6b6uyo4vq
.ipfs.dweb.link/
- https://bafybeib
2ui2plf3zbinsp24o4d5ir66yr4a3qlg55kswt2rmlgkoomvigu
.ipfs.dweb.link/
- [ipfs://Qm
QZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV/](ipfs://QmQZe48wGBwx6z8DuboTG62AYf8BbKd6XYDENefVZUvjyV
/)
- [ipfs://Qm
SHXp5oNAxME6KY7LJy4ndnuBfL3ujQ67aMiPuTUuQ66g/](ipfs://QmSHXp5oNAxME6KY7LJy4ndnuBfL3ujQ67aMiPuTUuQ66g
/)
### 5.72.3 (2025-02-21)
## 5.73.0 (2025-02-26)
### Features
* **web:** reduce monad testnet quote polling interval (#16719) c99cc6c
VERSION
View file @
1bf6943a
web/5.72.3
web/5.73.0
\ No newline at end of file
\ No newline at end of file
packages/uniswap/src/features/gating/configs.ts
View file @
1bf6943a
...
@@ -33,6 +33,7 @@ export enum SwapConfigKey {
...
@@ -33,6 +33,7 @@ export enum SwapConfigKey {
AverageL1BlockTimeMs
=
'
averageL1BlockTimeMs
'
,
AverageL1BlockTimeMs
=
'
averageL1BlockTimeMs
'
,
AverageL2BlockTimeMs
=
'
averageL2BlockTimeMs
'
,
AverageL2BlockTimeMs
=
'
averageL2BlockTimeMs
'
,
TradingApiSwapRequestMs
=
'
tradingApiSwapRequestMs
'
,
TradingApiSwapRequestMs
=
'
tradingApiSwapRequestMs
'
,
MonadTestnetPollingIntervalMs
=
'
monadTestnetPollingIntervalMs
'
,
MinAutoSlippageToleranceL2
=
'
minAutoSlippageToleranceL2
'
,
MinAutoSlippageToleranceL2
=
'
minAutoSlippageToleranceL2
'
,
...
...
packages/uniswap/src/features/transactions/swap/hooks/usePollingIntervalByChain.ts
View file @
1bf6943a
...
@@ -21,9 +21,19 @@ export function usePollingIntervalByChain(chainId?: UniverseChainId): number {
...
@@ -21,9 +21,19 @@ export function usePollingIntervalByChain(chainId?: UniverseChainId): number {
AVERAGE_L2_BLOCK_TIME_MS
,
AVERAGE_L2_BLOCK_TIME_MS
,
)
)
const
monadTestnetPollingIntervalMs
=
useDynamicConfigValue
(
DynamicConfigs
.
Swap
,
SwapConfigKey
.
MonadTestnetPollingIntervalMs
,
AVERAGE_L2_BLOCK_TIME_MS
,
)
// TODO(WEB-6132): remove this flag once short term experiment is complete
// TODO(WEB-6132): remove this flag once short term experiment is complete
const
enableTwoSecondInterval
=
useFeatureFlag
(
FeatureFlags
.
TwoSecondSwapQuotePollingInterval
)
const
enableTwoSecondInterval
=
useFeatureFlag
(
FeatureFlags
.
TwoSecondSwapQuotePollingInterval
)
const
l2PollingInterval
=
enableTwoSecondInterval
?
2
*
ONE_SECOND_MS
:
averageL2BlockTimeMs
const
l2PollingInterval
=
enableTwoSecondInterval
?
2
*
ONE_SECOND_MS
:
averageL2BlockTimeMs
// Remove this dynamic config once Monad RPC latency issues are resolved
if
(
chainId
===
UniverseChainId
.
MonadTestnet
)
{
return
monadTestnetPollingIntervalMs
}
return
isMainnetChainId
(
chainId
)
?
averageL1BlockTimeMs
:
l2PollingInterval
return
isMainnetChainId
(
chainId
)
?
averageL1BlockTimeMs
:
l2PollingInterval
}
}
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