ccxt-bybit
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
54 lines (48 loc) • 2 kB
JavaScript
;
// ---------------------------------------------------------------------------
const binance = require ('./binance.js');
// ---------------------------------------------------------------------------
module.exports = class binanceje extends binance {
describe () {
return this.deepExtend (super.describe (), {
'id': 'binanceje',
'name': 'Binance Jersey',
'countries': [ 'JE' ], // Jersey
'certified': false,
'pro': true,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/54874009-d526eb00-4df3-11e9-928c-ce6a2b914cd1.jpg',
'api': {
'web': 'https://www.binance.je',
'wapi': 'https://api.binance.je/wapi/v3',
'public': 'https://api.binance.je/api/v1',
'private': 'https://api.binance.je/api/v3',
'v3': 'https://api.binance.je/api/v3',
'v1': 'https://api.binance.je/api/v1',
},
'www': 'https://www.binance.je',
'referral': 'https://www.binance.je/?ref=35047921',
'doc': 'https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md',
'fees': 'https://www.binance.je/fees.html',
},
'fees': {
'trading': {
'tierBased': false,
'percentage': true,
'taker': 0.0005,
'maker': 0.0005,
},
// should be deleted, these are outdated and inaccurate
'funding': {
'tierBased': false,
'percentage': false,
'withdraw': {
'BTC': 0.0005,
'ETH': 0.01,
},
'deposit': {},
},
},
});
}
};