-
Notifications
You must be signed in to change notification settings - Fork 11
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
Price feed request for SKL token #75
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,5 +78,45 @@ | |
"name": "ethusd_cryptocompare", | ||
"selector": "[USD]", | ||
"url": "https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD" | ||
}, | ||
{ | ||
"weight": 1, | ||
"power": 2, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you update power for all these SKALE jobs to |
||
"selectorType": 0, | ||
"name": "sklusd_gemini", | ||
"selector": "last", | ||
"url": "https://api.gemini.com/v1/pubticker/sklusd" | ||
}, | ||
{ | ||
"weight": 1, | ||
"power": 2, | ||
"selectorType": 0, | ||
"name": "sklusd_kucoin", | ||
"selector": "data.SKL", | ||
"url": "https://api.kucoin.com/api/v1/prices?base=USD¤cies=SKL" | ||
}, | ||
{ | ||
"weight": 1, | ||
"power": 2, | ||
"selectorType": 0, | ||
"name": "sklusd_coinbase", | ||
"selector": "data.amount", | ||
"url": "https://api.coinbase.com/v2/prices/SKL-USD/spot" | ||
}, | ||
{ | ||
"weight": 1, | ||
"power": 2, | ||
"selectorType": 0, | ||
"name": "sklusd_coingecko_api", | ||
"selector": "skale.usd", | ||
"url": "https://api.coingecko.com/api/v3/simple/price?ids=skale&vs_currencies=usd" | ||
}, | ||
{ | ||
"weight": 1, | ||
"power": 2, | ||
"selectorType": 0, | ||
"name": "sklusd_cryptocompare", | ||
"selector": "[USD]", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here the selector should be |
||
"url": "https://min-api.cryptocompare.com/data/price?fsym=SKL&tsyms=USD" | ||
} | ||
] |
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.
If you update power for all SKALE jobs to
6
, you need to update the power for collection to6
as well@manuelbarbas