-
Notifications
You must be signed in to change notification settings - Fork 15
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
sync-latest-fx-prices #602
Conversation
As discussed, I would refrain from introducing the "multichain-schedule" for this. Would like a more generalized approach. |
9ae113b
to
0d31d7e
Compare
Removed multichain job in favour of chain specific ones. |
modules/network/optimism.ts
Outdated
{ | ||
name: 'sync-latest-fx-prices', | ||
interval: every(10, 'minutes'), | ||
}, |
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.
we dont have fx pools on OP. not sure about the other chains
modules/network/zkevm.ts
Outdated
{ | ||
name: 'sync-latest-fx-prices', | ||
interval: every(10, 'minutes'), | ||
}, |
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.
same, think they dont have fx pools
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.
true, FX is on: Mainnet, Polygon and Avalanche so far.
0d31d7e
to
8ccf9d5
Compare
Adding a job for syncing latest FX price from subgraph. The task itself is fast, so I'm scheduling it as one job for all the chains.
closes #565