-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgateio.php
29 lines (24 loc) · 809 Bytes
/
gateio.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
<?php
namespace ccxt;
include_once ('bter.php');
class gateio extends bter {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'gateio',
'name' => 'Gate.io',
'countries' => 'CN',
'rateLimit' => 1000,
'hasCORS' => false,
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/31784029-0313c702-b509-11e7-9ccc-bc0da6a0e435.jpg',
'api' => array (
'public' => 'https://data.gate.io/api',
'private' => 'https://data.gate.io/api',
),
'www' => 'https://gate.io/',
'doc' => 'https://gate.io/api2',
),
));
}
}
?>