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
358 lines (346 loc) • 15.5 kB
JavaScript
'use strict';
// ----------------------------------------------------------------------------
const Exchange = require ('./base/Exchange');
const { ExchangeError, AuthenticationError, DDoSProtection } = require ('./base/errors');
// ----------------------------------------------------------------------------
module.exports = class coinbase extends Exchange {
describe () {
return this.deepExtend (super.describe (), {
'id': 'coinbase',
'name': 'coinbase',
'countries': [ 'US' ],
'rateLimit': 400, // 10k calls per hour
'version': 'v2',
'userAgent': this.userAgents['chrome'],
'headers': {
'CB-VERSION': '2018-05-30',
},
'has': {
'CORS': true,
'cancelOrder': false,
'createDepositAddress': false,
'createOrder': false,
'deposit': false,
'fetchBalance': true,
'fetchClosedOrders': false,
'fetchCurrencies': true,
'fetchDepositAddress': false,
'fetchMarkets': false,
'fetchMyTrades': false,
'fetchOHLCV': false,
'fetchOpenOrders': false,
'fetchOrder': false,
'fetchOrderBook': false,
'fetchOrders': false,
'fetchTicker': true,
'fetchTickers': false,
'fetchBidsAsks': false,
'fetchTrades': false,
'withdraw': false,
'fetchTransactions': false,
'fetchDeposits': false,
'fetchWithdrawals': false,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/40811661-b6eceae2-653a-11e8-829e-10bfadb078cf.jpg',
'api': 'https://api.coinbase.com',
'www': 'https://www.coinbase.com',
'doc': 'https://developers.coinbase.com/api/v2',
'fees': 'https://support.coinbase.com/customer/portal/articles/2109597-buy-sell-bank-transfer-fees',
'referral': 'https://www.coinbase.com/join/58cbe25a355148797479dbd2',
},
'requiredCredentials': {
'apiKey': true,
'secret': true,
},
'api': {
'public': {
'get': [
'currencies',
'time',
'exchange-rates',
'users/{user_id}',
'prices/{symbol}/buy',
'prices/{symbol}/sell',
'prices/{symbol}/spot',
],
},
'private': {
'get': [
'accounts',
'accounts/{account_id}',
'accounts/{account_id}/addresses',
'accounts/{account_id}/addresses/{address_id}',
'accounts/{account_id}/addresses/{address_id}/transactions',
'accounts/{account_id}/transactions',
'accounts/{account_id}/transactions/{transaction_id}',
'accounts/{account_id}/buys',
'accounts/{account_id}/buys/{buy_id}',
'accounts/{account_id}/sells',
'accounts/{account_id}/sells/{sell_id}',
'accounts/{account_id}/deposits',
'accounts/{account_id}/deposits/{deposit_id}',
'accounts/{account_id}/withdrawals',
'accounts/{account_id}/withdrawals/{withdrawal_id}',
'payment-methods',
'payment-methods/{payment_method_id}',
'user',
'user/auth',
],
'post': [
'accounts',
'accounts/{account_id}/primary',
'accounts/{account_id}/addresses',
'accounts/{account_id}/transactions',
'accounts/{account_id}/transactions/{transaction_id}/complete',
'accounts/{account_id}/transactions/{transaction_id}/resend',
'accounts/{account_id}/buys',
'accounts/{account_id}/buys/{buy_id}/commit',
'accounts/{account_id}/sells',
'accounts/{account_id}/sells/{sell_id}/commit',
'accounts/{account_id}/deposists',
'accounts/{account_id}/deposists/{deposit_id}/commit',
'accounts/{account_id}/withdrawals',
'accounts/{account_id}/withdrawals/{withdrawal_id}/commit',
],
'put': [
'accounts/{account_id}',
'user',
],
'delete': [
'accounts/{id}',
'accounts/{account_id}/transactions/{transaction_id}',
],
},
},
'exceptions': {
'two_factor_required': AuthenticationError, // 402 When sending money over 2fa limit
'param_required': ExchangeError, // 400 Missing parameter
'validation_error': ExchangeError, // 400 Unable to validate POST/PUT
'invalid_request': ExchangeError, // 400 Invalid request
'personal_details_required': AuthenticationError, // 400 User’s personal detail required to complete this request
'identity_verification_required': AuthenticationError, // 400 Identity verification is required to complete this request
'jumio_verification_required': AuthenticationError, // 400 Document verification is required to complete this request
'jumio_face_match_verification_required': AuthenticationError, // 400 Document verification including face match is required to complete this request
'unverified_email': AuthenticationError, // 400 User has not verified their email
'authentication_error': AuthenticationError, // 401 Invalid auth (generic)
'invalid_token': AuthenticationError, // 401 Invalid Oauth token
'revoked_token': AuthenticationError, // 401 Revoked Oauth token
'expired_token': AuthenticationError, // 401 Expired Oauth token
'invalid_scope': AuthenticationError, // 403 User hasn’t authenticated necessary scope
'not_found': ExchangeError, // 404 Resource not found
'rate_limit_exceeded': DDoSProtection, // 429 Rate limit exceeded
'internal_server_error': ExchangeError, // 500 Internal server error
},
'markets': {
'BTC/USD': { 'id': 'btc-usd', 'symbol': 'BTC/USD', 'base': 'BTC', 'quote': 'USD' },
'LTC/USD': { 'id': 'ltc-usd', 'symbol': 'LTC/USD', 'base': 'LTC', 'quote': 'USD' },
'ETH/USD': { 'id': 'eth-usd', 'symbol': 'ETH/USD', 'base': 'ETH', 'quote': 'USD' },
'BCH/USD': { 'id': 'bch-usd', 'symbol': 'BCH/USD', 'base': 'BCH', 'quote': 'USD' },
},
'options': {
'accounts': [
'wallet',
'fiat',
// 'vault',
],
},
});
}
async fetchTime () {
let response = await this.publicGetTime ();
let data = response['data'];
return this.parse8601 (data['iso']);
}
async fetchCurrencies (params = {}) {
let response = await this.publicGetCurrencies (params);
let currencies = response['data'];
let result = {};
for (let c = 0; c < currencies.length; c++) {
let currency = currencies[c];
let id = currency['id'];
let name = currency['name'];
let code = this.commonCurrencyCode (id);
let minimum = this.safeFloat (currency, 'min_size');
result[code] = {
'id': id,
'code': code,
'info': currency, // the original payload
'name': name,
'active': true,
'fee': undefined,
'precision': undefined,
'limits': {
'amount': {
'min': minimum,
'max': undefined,
},
'price': {
'min': undefined,
'max': undefined,
},
'cost': {
'min': undefined,
'max': undefined,
},
'withdraw': {
'min': undefined,
'max': undefined,
},
},
};
}
return result;
}
async fetchTicker (symbol, params = {}) {
await this.loadMarkets ();
let timestamp = this.seconds ();
let market = this.market (symbol);
let request = this.extend ({
'symbol': market['id'],
}, params);
let buy = await this.publicGetPricesSymbolBuy (request);
let sell = await this.publicGetPricesSymbolSell (request);
let spot = await this.publicGetPricesSymbolSpot (request);
let ask = this.safeFloat (buy['data'], 'amount');
let bid = this.safeFloat (sell['data'], 'amount');
let last = this.safeFloat (spot['data'], 'amount');
return {
'symbol': symbol,
'timestamp': timestamp,
'datetime': this.iso8601 (timestamp),
'bid': bid,
'ask': ask,
'last': last,
'high': undefined,
'low': undefined,
'bidVolume': undefined,
'askVolume': undefined,
'vwap': undefined,
'open': undefined,
'close': undefined,
'previousClose': undefined,
'change': undefined,
'percentage': undefined,
'average': undefined,
'baseVolume': undefined,
'quoteVolume': undefined,
'info': {
'buy': buy,
'sell': sell,
'spot': spot,
},
};
}
async fetchBalance (params = {}) {
let response = await this.privateGetAccounts ();
let balances = response['data'];
let accounts = this.safeValue (params, 'type', this.options['accounts']);
let result = { 'info': response };
for (let b = 0; b < balances.length; b++) {
let balance = balances[b];
if (this.inArray (balance['type'], accounts)) {
let currencyId = balance['balance']['currency'];
let code = currencyId;
if (currencyId in this.currencies_by_id)
code = this.currencies_by_id[currencyId]['code'];
let total = this.safeFloat (balance['balance'], 'amount');
let free = total;
let used = undefined;
if (code in result) {
result[code]['free'] += total;
result[code]['total'] += total;
} else {
let account = {
'free': free,
'used': used,
'total': total,
};
result[code] = account;
}
}
}
return this.parseBalance (result);
}
sign (path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
let request = '/' + this.implodeParams (path, params);
let query = this.omit (params, this.extractParams (path));
if (method === 'GET') {
if (Object.keys (query).length)
request += '?' + this.urlencode (query);
}
let url = this.urls['api'] + '/' + this.version + request;
if (api === 'private') {
this.checkRequiredCredentials ();
let nonce = this.nonce ().toString ();
let payload = '';
if (method !== 'GET') {
if (Object.keys (query).length) {
body = this.json (query);
payload = body;
}
}
let what = nonce + method + '/' + this.version + request + payload;
let signature = this.hmac (this.encode (what), this.encode (this.secret));
headers = {
'CB-ACCESS-KEY': this.apiKey,
'CB-ACCESS-SIGN': signature,
'CB-ACCESS-TIMESTAMP': nonce,
'Content-Type': 'application/json',
};
}
return { 'url': url, 'method': method, 'body': body, 'headers': headers };
}
handleErrors (code, reason, url, method, headers, body) {
if (typeof body !== 'string')
return; // fallback to default error handler
if (body.length < 2)
return; // fallback to default error handler
if ((body[0] === '{') || (body[0] === '[')) {
let response = JSON.parse (body);
let feedback = this.id + ' ' + body;
//
// {"error": "invalid_request", "error_description": "The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed."}
//
// or
//
// {
// "errors": [
// {
// "id": "not_found",
// "message": "Not found"
// }
// ]
// }
//
let exceptions = this.exceptions;
let errorCode = this.safeString (response, 'error');
if (typeof errorCode !== 'undefined') {
if (errorCode in exceptions) {
throw new exceptions[errorCode] (feedback);
} else {
throw new ExchangeError (feedback);
}
}
let errors = this.safeValue (response, 'errors');
if (typeof errors !== 'undefined') {
if (Array.isArray (errors)) {
let numErrors = errors.length;
if (numErrors > 0) {
errorCode = this.safeString (errors[0], 'id');
if (typeof errorCode !== 'undefined') {
if (errorCode in exceptions) {
throw new exceptions[errorCode] (feedback);
} else {
throw new ExchangeError (feedback);
}
}
}
}
}
let data = this.safeValue (response, 'data');
if (typeof data === 'undefined')
throw new ExchangeError (this.id + ' failed due to a malformed response ' + this.json (response));
}
}
};