UNPKG

preidman-ccxt

Version:

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

25 lines (20 loc) 948 B
'use strict'; // --------------------------------------------------------------------------- const gdax = require ('./gdax.js'); // --------------------------------------------------------------------------- module.exports = class coinbaseprime extends gdax { describe () { return this.deepExtend (super.describe (), { 'id': 'coinbaseprime', 'name': 'Coinbase Prime', 'urls': { 'test': 'https://api-public.sandbox.prime.coinbase.com', 'logo': 'https://user-images.githubusercontent.com/1294454/44539184-29f26e00-a70c-11e8-868f-e907fc236a7c.jpg', 'api': 'https://api.prime.coinbase.com', 'www': 'https://prime.coinbase.com', 'doc': 'https://docs.prime.coinbase.com', 'fees': 'https://support.prime.coinbase.com/customer/en/portal/articles/2945629-fees?b_id=17475', }, }); } };