ccxt-js
Version:
The node.js portion of original ccxt cryptocurrency trading library with support for 100+ exchanges. It reduces the size of the library from 40MB to 8MB
27 lines (22 loc) • 959 B
JavaScript
;
// ---------------------------------------------------------------------------
const gdax = require ('./gdax.js');
// ---------------------------------------------------------------------------
module.exports = class coinbasepro extends gdax {
describe () {
return this.deepExtend (super.describe (), {
'id': 'coinbasepro',
'name': 'Coinbase Pro',
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg',
'api': 'https://api.pro.coinbase.com',
'www': 'https://pro.coinbase.com/',
'doc': 'https://docs.gdax.com',
'fees': [
'https://www.gdax.com/fees',
'https://support.gdax.com/customer/en/portal/topics/939402-depositing-and-withdrawing-funds/articles',
],
},
});
}
};