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
64 lines (61 loc) • 2.19 kB
JavaScript
;
// ---------------------------------------------------------------------------
const bitsane = require ('./bitsane.js');
// ---------------------------------------------------------------------------
module.exports = class anybits extends bitsane {
describe () {
return this.deepExtend (super.describe (), {
'id': 'anybits',
'name': 'Anybits',
'countries': [ 'IE' ], // Ireland
'has': {
'fetchCurrencies': true,
'fetchTickers': true,
'fetchOpenOrders': true,
'fetchDepositAddress': true,
'withdraw': true,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/41388454-ae227544-6f94-11e8-82a4-127d51d34903.jpg',
'api': 'https://anybits.com/api',
'www': 'https://anybits.com',
'doc': 'https://anybits.com/help/api',
'fees': 'https://anybits.com/help/fees',
},
'api': {
'public': {
'get': [
'assets/currencies',
'assets/pairs',
'ticker',
'orderbook',
'trades',
],
},
'private': {
'post': [
'balances',
'order/cancel',
'order/new',
'order/status',
'orders',
'orders/history',
'deposit/address',
'withdraw',
'withdrawal/status',
'transactions/history',
'vouchers',
'vouchers/create',
'vouchers/redeem',
],
},
},
'fees': {
'trading': {
'maker': 0.15 / 100,
'taker': 0.25 / 100,
},
},
});
}
};