-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflowbtc.php
37 lines (32 loc) · 1.23 KB
/
flowbtc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace ccxt;
// 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
use Exception; // a common import
class flowbtc extends ndax {
public function describe() {
return $this->deep_extend(parent::describe (), array(
'id' => 'flowbtc',
'name' => 'flowBTC',
'countries' => array( 'BR' ), // Brazil
'rateLimit' => 1000,
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/51840849/87443317-01c0d080-c5fe-11ea-95c2-9ebe1a8fafd9.jpg',
'api' => array(
'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' => array(
'trading' => array(
'tierBased' => false,
'percentage' => true,
'maker' => 0.0025,
'taker' => 0.005,
),
),
));
}
}