UNPKG

ccxt-compiled

Version:

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

28 lines (23 loc) 899 B
"use strict"; // --------------------------------------------------------------------------- const qryptos = require('./qryptos.js'); // --------------------------------------------------------------------------- module.exports = class quoine extends qryptos { describe() { return this.deepExtend(super.describe(), { 'id': 'quoine', 'name': 'QUOINE', 'countries': ['JP', 'SG', 'VN'], 'version': '2', 'rateLimit': 1000, 'hasFetchTickers': true, 'hasCORS': false, 'urls': { 'logo': 'https://user-images.githubusercontent.com/1294454/27766844-9615a4e8-5ee8-11e7-8814-fcd004db8cdd.jpg', 'api': 'https://api.quoine.com', 'www': 'https://www.quoine.com', 'doc': 'https://developers.quoine.com' } }); } };