UNPKG

@jmparsons/ccxt

Version:

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

27 lines (22 loc) 879 B
'use strict'; // --------------------------------------------------------------------------- const huobipro = require ('./huobipro.js'); // --------------------------------------------------------------------------- module.exports = class huobicny extends huobipro { describe () { return this.deepExtend (super.describe (), { 'id': 'huobicny', 'name': 'Huobi CNY', 'hostname': 'be.huobi.com', 'has': { 'CORS': false, }, 'urls': { 'logo': 'https://user-images.githubusercontent.com/1294454/27766569-15aa7b9a-5edd-11e7-9e7f-44791f4ee49c.jpg', 'api': 'https://be.huobi.com', 'www': 'https://www.huobi.com', 'doc': 'https://github.com/huobiapi/API_Docs/wiki/REST_api_reference', }, }); } };