ccxt 4.2.37 → 4.2.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/ccxt.js CHANGED
@@ -44,6 +44,7 @@ var bitteam = require('./src/bitteam.js');
44
44
  var bitvavo = require('./src/bitvavo.js');
45
45
  var bl3p = require('./src/bl3p.js');
46
46
  var blockchaincom = require('./src/blockchaincom.js');
47
+ var blofin = require('./src/blofin.js');
47
48
  var btcalpha = require('./src/btcalpha.js');
48
49
  var btcbox = require('./src/btcbox.js');
49
50
  var btcmarkets = require('./src/btcmarkets.js');
@@ -176,7 +177,7 @@ var woo$1 = require('./src/pro/woo.js');
176
177
 
177
178
  //-----------------------------------------------------------------------------
178
179
  // this is updated by vss.js when building
179
- const version = '4.2.37';
180
+ const version = '4.2.38';
180
181
  Exchange["default"].ccxtVersion = version;
181
182
  const exchanges = {
182
183
  'ace': ace,
@@ -211,6 +212,7 @@ const exchanges = {
211
212
  'bitvavo': bitvavo,
212
213
  'bl3p': bl3p,
213
214
  'blockchaincom': blockchaincom,
215
+ 'blofin': blofin,
214
216
  'btcalpha': btcalpha,
215
217
  'btcbox': btcbox,
216
218
  'btcmarkets': btcmarkets,
@@ -416,6 +418,7 @@ exports.bitteam = bitteam;
416
418
  exports.bitvavo = bitvavo;
417
419
  exports.bl3p = bl3p;
418
420
  exports.blockchaincom = blockchaincom;
421
+ exports.blofin = blofin;
419
422
  exports.btcalpha = btcalpha;
420
423
  exports.btcbox = btcbox;
421
424
  exports.btcmarkets = btcmarkets;
@@ -0,0 +1,9 @@
1
+ 'use strict';
2
+
3
+ var Exchange$1 = require('../base/Exchange.js');
4
+
5
+ // -------------------------------------------------------------------------------
6
+ class Exchange extends Exchange$1["default"] {
7
+ }
8
+
9
+ module.exports = Exchange;