forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitcoincom.php
36 lines (31 loc) · 1.29 KB
/
bitcoincom.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
<?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 bitcoincom extends hitbtc {
public function describe() {
return $this->deep_extend(parent::describe (), array(
'id' => 'bitcoincom',
'name' => 'bitcoin.com',
'countries' => array( 'KN' ),
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/1294454/97296144-514fa300-1861-11eb-952b-3d55d492200b.jpg',
'api' => array(
'public' => 'https://api.exchange.bitcoin.com',
'private' => 'https://api.exchange.bitcoin.com',
),
'www' => 'https://exchange.bitcoin.com',
'doc' => 'https://api.exchange.bitcoin.com/api/2/explore',
'fees' => 'https://exchange.bitcoin.com/fees-and-limits',
'referral' => 'https://exchange.bitcoin.com/referral/da948b21d6c92d69',
),
'fees' => array(
'trading' => array(
'maker' => 0.15 / 100,
'taker' => 0.2 / 100,
),
),
));
}
}