UNPKG

@jmparsons/ccxt

Version:

A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges

38 lines (25 loc) 888 B
'use strict' // ---------------------------------------------------------------------------- const log = require ('ololog') , ansi = require ('ansicolor').nice , chai = require ('chai') , expect = chai.expect , assert = chai.assert /* ------------------------------------------------------------------------ */ module.exports = async (exchange) => { const skippedExchanges = [ ] if (skippedExchanges.includes (exchange.id)) { log (exchange.id, 'found in ignored exchanges, skipping fetchTradingFees...') return } if (exchange.has.fetchTradingFees) { // log ('fetching trading fees...') const method = 'fetchTradingFees' const fees = await exchange[method] () log.green (fees) return fees } else { log ('fetching trading fees not supported') } }