forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchilebit.php
34 lines (29 loc) · 1.11 KB
/
chilebit.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
<?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
class chilebit extends foxbit {
public function describe() {
return $this->deep_extend(parent::describe (), array(
'id' => 'chilebit',
'name' => 'ChileBit',
'countries' => array( 'CL' ),
'has' => array(
'CORS' => false,
),
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/1294454/27991414-1298f0d8-647f-11e7-9c40-d56409266336.jpg',
'api' => array(
'public' => 'https://api.blinktrade.com/api',
'private' => 'https://api.blinktrade.com/tapi',
),
'www' => 'https://chilebit.net',
'doc' => 'https://blinktrade.com/docs',
),
'options' => array(
'brokerId' => '9', // https://blinktrade.com/docs/#brokers
),
));
}
}