-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquoinex.php
28 lines (25 loc) · 960 Bytes
/
quoinex.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
<?php
namespace ccxt;
class quoinex extends qryptos {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'quoinex',
'name' => 'QUOINEX',
'countries' => array ( 'JP', 'SG', 'VN' ),
'version' => '2',
'rateLimit' => 1000,
'hasFetchTickers' => true,
'hasCORS' => false,
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/35047114-0e24ad4a-fbaa-11e7-96a9-69c1a756083b.jpg',
'api' => 'https://api.quoine.com',
'www' => 'https://quoinex.com/',
'doc' => array (
'https://developers.quoine.com',
'https://developers.quoine.com/v2',
),
'fees' => 'https://quoine.zendesk.com/hc/en-us/articles/115011281488-Fees',
),
));
}
}