-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathHuobiSwap.php
65 lines (55 loc) · 1.09 KB
/
HuobiSwap.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
<?php
/**
* @author lin <465382251@qq.com>
* */
namespace Lin\Huobi;
use Lin\Huobi\Api\Swap\Market;
use Lin\Huobi\Api\Swap\Account;
use Lin\Huobi\Api\Swap\Trade;
class HuobiSwap
{
protected $key;
protected $secret;
protected $host;
protected $options=[];
function __construct(string $key='',string $secret='',string $host='https://api.hbdm.com'){
$this->key=$key;
$this->secret=$secret;
$this->host=$host;
}
/**
*
* */
private function init(){
return [
'key'=>$this->key,
'secret'=>$this->secret,
'host'=>$this->host,
'options'=>$this->options,
];
}
/**
*
* */
function setOptions(array $options=[]){
$this->options=$options;
}
/**
*
* */
public function account(){
return new Account($this->init());
}
/**
*
* */
public function market(){
return new Market($this->init());
}
/**
*
* */
public function trade(){
return new Trade($this->init());
}
}