Fixing some bugs and minor changes

This commit is contained in:
José Oliveira 2021-01-27 12:22:53 +00:00 committed by Josh Harvey
parent 7accdaa84f
commit ea1c29ebba
5 changed files with 23 additions and 15 deletions

View file

@ -1,11 +1,11 @@
const _ = require('lodash/fp')
const { ORDER_TYPES } = require('./consts')
const { COINS } = require('../../new-admin/config/coins') // para cada exchange
const { COINS } = require('../../new-admin/config/coins')
const ORDER_TYPE = ORDER_TYPES.LIMIT
const { BTC, ETH, LTC, BCH } = COINS
const CRYPTO = [BTC, ETH, LTC, BCH]
const { BTC, ETH } = COINS
const CRYPTO = [BTC, ETH]
const FIAT = ['USD']
const AMOUNT_PRECISION = 4