-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurdubit.php
28 lines (23 loc) · 805 Bytes
/
urdubit.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
<?php
namespace ccxt;
include_once ('foxbit.php');
class urdubit extends foxbit {
public function describe () {
return array_replace_recursive (parent::describe (), array (
'id' => 'urdubit',
'name' => 'UrduBit',
'countries' => 'PK',
'hasCORS' => false,
'urls' => array (
'logo' => 'https://user-images.githubusercontent.com/1294454/27991453-156bf3ae-6480-11e7-82eb-7295fe1b5bb4.jpg',
'api' => array (
'public' => 'https://api.blinktrade.com/api',
'private' => 'https://api.blinktrade.com/tapi',
),
'www' => 'https://urdubit.com',
'doc' => 'https://blinktrade.com/docs',
),
));
}
}
?>