UNPKG

ccxt

Version:

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

31 lines (28 loc) 1.31 kB
// ---------------------------------------------------------------------------- // PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN: // https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code // EDIT THE CORRESPONDENT .ts FILE INSTEAD // --------------------------------------------------------------------------- import binance from './binance.js'; import binancecoinmRest from '../binancecoinm.js'; // --------------------------------------------------------------------------- export default class binancecoinm extends binance { describe() { // eslint-disable-next-line new-cap const restInstance = new binancecoinmRest(); const restDescribe = restInstance.describe(); const extended = this.deepExtend(super.describe(), restDescribe); return this.deepExtend(extended, { 'id': 'binancecoinm', 'name': 'Binance COIN-M', 'urls': { 'logo': 'https://user-images.githubusercontent.com/1294454/117738721-668c8d80-b205-11eb-8c49-3fad84c4a07f.jpg', 'doc': 'https://developers.binance.com/en', }, 'options': { 'fetchMarkets': ['inverse'], 'defaultSubType': 'inverse', }, }); } }