-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0a2443
commit e0a9c6d
Showing
3 changed files
with
11,617 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
const Driver = require('../models/driver'); | ||
const request = require('../lib/request'); | ||
const Ticker = require('../models/ticker'); | ||
const { parseToFloat } = require('../lib/utils'); | ||
|
||
/** | ||
* @memberof Driver | ||
* @augments Driver | ||
*/ | ||
class Icpswap extends Driver { | ||
/** | ||
* @augments Driver.fetchTickers | ||
* @returns {Promise.Array<Ticker>} Returns a promise of an array with tickers. | ||
*/ | ||
async fetchTickers() { | ||
const markets = await request('https://uvevg-iyaaa-aaaak-ac27q-cai.raw.ic0.app/tickers'); | ||
|
||
return Object.keys(markets).flatMap((market) => { | ||
const ticker = markets[market]; | ||
const close = parseToFloat(ticker.last_price); | ||
const baseVolume = parseToFloat(ticker.base_volume_24H); | ||
const quoteVolume = parseToFloat(ticker.target_volume_24H); | ||
|
||
if (!close) return []; | ||
if (!baseVolume && !quoteVolume) return []; | ||
|
||
return new Ticker({ | ||
base: ticker.base_currency, | ||
quote: ticker.target_currency, | ||
baseReference: ticker.base_id, | ||
quoteReference: ticker.target_id, | ||
close, | ||
baseVolume: parseToFloat(ticker.base_volume_24H), | ||
quoteVolume: parseToFloat(ticker.target_volume_24H), | ||
}); | ||
}); | ||
} | ||
} | ||
|
||
module.exports = Icpswap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.