UNPKG

@proton/ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges

52 lines (49 loc) 2.2 kB
// ---------------------------------------------------------------------------- // PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN: // https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code // EDIT THE CORRESPONDENT .ts FILE INSTEAD // --------------------------------------------------------------------------- import binance from './binance.js'; // --------------------------------------------------------------------------- export default class binanceus extends binance { describe() { return this.deepExtend(super.describe(), { 'id': 'binanceus', 'name': 'Binance US', 'countries': ['US'], 'certified': false, 'urls': { 'logo': 'https://user-images.githubusercontent.com/1294454/65177307-217b7c80-da5f-11e9-876e-0b748ba0a358.jpg', 'api': { 'ws': { 'spot': 'wss://stream.binance.us:9443/ws', }, 'web': 'https://www.binance.us', 'wapi': 'https://api.binance.us/wapi/v3', 'public': 'https://api.binance.us/api/v1', 'private': 'https://api.binance.us/api/v3', 'v3': 'https://api.binance.us/api/v3', 'v1': 'https://api.binance.us/api/v1', }, 'www': 'https://www.binance.us', 'referral': 'https://www.binance.us/?ref=35005074', 'doc': 'https://github.com/binance-us/binance-official-api-docs', 'fees': 'https://www.binance.us/en/fee/schedule', }, 'options': { 'fetchCurrencies': false, 'quoteOrderQty': false, 'defaultType': 'spot', 'fetchMarkets': ['spot'], }, 'fees': { 'trading': { 'tierBased': false, 'percentage': true, 'taker': 0.0, 'maker': 0.0, // 0.1% trading fee, zero fees for all trading pairs before November 1 }, }, }); } }