forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfmfwio.php
37 lines (32 loc) · 1.27 KB
/
fmfwio.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
use ccxt\abstract\fmfwio as hitbtc;
class fmfwio extends hitbtc {
public function describe() {
return $this->deep_extend(parent::describe(), array(
'id' => 'fmfwio',
'name' => 'FMFW.io',
'countries' => array( 'KN' ),
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/1294454/159177712-b685b40c-5269-4cea-ac83-f7894c49525d.jpg',
'api' => array(
'public' => 'https://api.fmfw.io/api/3',
'private' => 'https://api.fmfw.io/api/3',
),
'www' => 'https://fmfw.io',
'doc' => 'https://api.fmfw.io/',
'fees' => 'https://fmfw.io/fees-and-limits',
'referral' => 'https://fmfw.io/referral/da948b21d6c92d69',
),
'fees' => array(
'trading' => array(
'maker' => $this->parse_number('0.005'),
'taker' => $this->parse_number('0.005'),
),
),
));
}
}