forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bequant.php
35 lines (30 loc) · 1.13 KB
/
bequant.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 bequant extends hitbtc {
public function describe() {
return $this->deep_extend(parent::describe(), array(
'id' => 'bequant',
'name' => 'Bequant',
'countries' => array( 'MT' ), // Malta
'pro' => true,
'urls' => array(
'logo' => 'https://user-images.githubusercontent.com/1294454/55248342-a75dfe00-525a-11e9-8aa2-05e9dca943c6.jpg',
'api' => array(
'public' => 'https://api.bequant.io',
'private' => 'https://api.bequant.io',
),
'www' => 'https://bequant.io',
'doc' => array(
'https://api.bequant.io/',
),
'fees' => array(
'https://bequant.io/fees-and-limits',
),
'referral' => 'https://bequant.io',
),
));
}
}