-
Notifications
You must be signed in to change notification settings - Fork 0
/
btcexchange.php
32 lines (27 loc) · 1.13 KB
/
btcexchange.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
<?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 as Exception; // a common import
class btcexchange extends btcturk {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'btcexchange',
'name' => 'BTCExchange',
'countries' => array ( 'PH' ), // Philippines
'rateLimit' => 1500,
'has' => array (
'CORS' => false,
),
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/27993052-4c92911a-64aa-11e7-96d8-ec6ac3435757.jpg',
'api' => 'https://www.btcexchange.ph/api',
'www' => 'https://www.btcexchange.ph',
'doc' => 'https://github.com/BTCTrader/broker-api-docs',
),
'markets' => array (
'BTC/PHP' => array ( 'id' => 'BTC/PHP', 'symbol' => 'BTC/PHP', 'base' => 'BTC', 'quote' => 'PHP' ),
),
));
}
}