sfccxt
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
17 lines (12 loc) • 404 B
JavaScript
// ---------------------------------------------------------------------------
const gate = require ('./gate.js');
// ---------------------------------------------------------------------------
module.exports = class gateio extends gate {
describe () {
return this.deepExtend (super.describe (), {
'id': 'gateio',
'alias': true,
});
}
};
;