-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoolcoin.php
71 lines (66 loc) · 2.52 KB
/
coolcoin.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?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 coolcoin extends coinegg {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'coolcoin',
'name' => 'CoolCoin',
'countries' => array ( 'HK' ),
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/36770529-be7b1a04-1c5b-11e8-9600-d11f1996b539.jpg',
'api' => array (
'web' => 'https://www.coolcoin.com/coin',
'rest' => 'https://www.coolcoin.com/api/v1',
),
'www' => 'https://www.coolcoin.com',
'doc' => 'https://www.coolcoin.com/help.api.html',
'fees' => 'https://www.coolcoin.com/spend.price.html',
),
'fees' => array (
'trading' => array (
'maker' => 0.1 / 100,
'taker' => 0.1 / 100,
),
'funding' => array (
'withdraw' => array (
'BTC' => 0.001,
'BCH' => 0.002,
'ETH' => 0.01,
'ETC' => 0.01,
'LTC' => 0.001,
'TBC' => '1%',
'HSR' => '1%',
'NEO' => '1%',
'SDC' => '1%',
'EOS' => '1%',
'BTM' => '1%',
'XAS' => '1%',
'ACT' => '1%',
'SAK' => '1%',
'GCS' => '1%',
'HCC' => '1%',
'QTUM' => '1%',
'GEC' => '1%',
'TRX' => '1%',
'IFC' => '1%',
'PAY' => '1%',
'PGC' => '1%',
'KTC' => '1%',
'INT' => '1%',
'LSK' => '0.5%',
'SKT' => '1%',
'SSS' => '1%',
'BT1' => '1%',
'BT2' => '1%',
),
),
),
'options' => array (
'quoteIds' => ['btc', 'usdt'],
),
));
}
}