forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdax.php
35 lines (30 loc) · 1.26 KB
/
cdax.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
35
<?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 cdax extends huobipro {
public function describe() {
return $this->deep_extend(parent::describe (), array(
'id' => 'cdax',
'name' => 'CDAX',
'countries' => array( 'RU' ),
'hostname' => 'cdax.io',
'pro' => false,
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/1294454/102157692-fd406280-3e90-11eb-8d46-4511b617cd17.jpg',
'api' => array(
'market' => 'https://{hostname}/api',
'public' => 'https://{hostname}/api',
'private' => 'https://{hostname}/api',
'v2Public' => 'https://{hostname}/api',
'v2Private' => 'https://{hostname}/api',
),
'www' => 'https://cdax.io',
'referral' => 'https://cdax.io/invite?invite_code=esc74',
'doc' => 'https://github.com/cloudapidoc/API_Docs',
'fees' => 'https://cdax.io/about/fee',
),
));
}
}