-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfybsg.php
24 lines (21 loc) · 811 Bytes
/
fybsg.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
<?php
namespace ccxt;
class fybsg extends fybse {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'fybsg',
'name' => 'FYB-SG',
'countries' => 'SG', // Singapore
'hasCORS' => false,
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/27766513-3364d56a-5edb-11e7-9e6b-d5898bb89c81.jpg',
'api' => 'https://www.fybsg.com/api/SGD',
'www' => 'https://www.fybsg.com',
'doc' => 'http://docs.fyb.apiary.io',
),
'markets' => array (
'BTC/SGD' => array ( 'id' => 'SGD', 'symbol' => 'BTC/SGD', 'base' => 'BTC', 'quote' => 'SGD' ),
),
));
}
}