-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquoine.php
28 lines (23 loc) · 798 Bytes
/
quoine.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;
include_once ('qryptos.php');
class quoine extends qryptos {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'quoine',
'name' => 'QUOINE',
'countries' => array ( 'JP', 'SG', 'VN' ),
'version' => '2',
'rateLimit' => 1000,
'hasFetchTickers' => true,
'hasCORS' => false,
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/27766844-9615a4e8-5ee8-11e7-8814-fcd004db8cdd.jpg',
'api' => 'https://api.quoine.com',
'www' => 'https://www.quoine.com',
'doc' => 'https://developers.quoine.com',
),
));
}
}
?>