feat: binance exchange support

This commit is contained in:
José Oliveira 2022-05-10 11:28:21 +01:00
parent 81702e2132
commit 0fc7ffefb1
10 changed files with 77 additions and 7 deletions

View file

@ -8,6 +8,8 @@ const binanceus = require('../exchange/binanceus')
const cex = require('../exchange/cex')
const ftx = require('../exchange/ftx')
const bitpay = require('../ticker/bitpay')
const binance = require('../exchange/binance')
const { BTC, BCH, DASH, ETH, LTC, ZEC } = COINS
const ALL = {
@ -21,7 +23,8 @@ const ALL = {
coinbase: {
CRYPTO: [BTC, ETH, LTC, DASH, ZEC, BCH],
FIAT: 'ALL_CURRENCIES'
}
},
binance: binance
}
function buildMarket (fiatCode, cryptoCode, serviceName) {