@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
37 lines (34 loc) • 1.43 kB
JavaScript
// ----------------------------------------------------------------------------
// 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 ndax from './ndax.js';
// ---------------------------------------------------------------------------
export default class flowbtc extends ndax {
describe() {
return this.deepExtend(super.describe(), {
'id': 'flowbtc',
'name': 'flowBTC',
'countries': ['BR'],
'rateLimit': 1000,
'urls': {
'logo': 'https://user-images.githubusercontent.com/51840849/87443317-01c0d080-c5fe-11ea-95c2-9ebe1a8fafd9.jpg',
'api': {
'public': 'https://api.flowbtc.com.br:8443/ap/',
'private': 'https://api.flowbtc.com.br:8443/ap/',
},
'www': 'https://www.flowbtc.com.br',
'doc': 'https://www.flowbtc.com.br/api.html',
},
'fees': {
'trading': {
'tierBased': false,
'percentage': true,
'maker': 0.0025,
'taker': 0.005,
},
},
});
}
}