-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Local UniswapV3 Markets #340
Conversation
DAI_ETH = pkgtypes.NewCurrencyPair("DAI", "ETH") | ||
ETHENA_ETH = pkgtypes.NewCurrencyPair("ENA", "ETH") | ||
ETHERFI_ETH = pkgtypes.NewCurrencyPair("ETHFI", "ETH") | ||
HARRY_POTTER_OBAMA_SONIC_10_INU_ETH = pkgtypes.NewCurrencyPair("HARRY_POTTER_OBAMA_SONIC_10_INU", "ETH") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kek
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #340 +/- ##
==========================================
- Coverage 56.80% 56.73% -0.08%
==========================================
Files 227 227
Lines 10761 10756 -5
==========================================
- Hits 6113 6102 -11
- Misses 4136 4141 +5
- Partials 512 513 +1 ☔ View full report in Codecov by Sentry. |
@@ -302,7 +315,7 @@ func init() { | |||
&updateInterval, | |||
"update-interval", | |||
"", | |||
500*time.Millisecond, | |||
250*time.Millisecond, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a relatively small change, but in general I think we should avoid combining unrelated changes into PRs. It makes it more likely for people to miss them.
Updating the default price aggregation interval has nothing to do with adding uniswap markets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yea agreed, this was meant to be a fix in previous PRs but got excluded.
No description provided.