Administrator
15 hours ago 75ffb97146a0a15d76ae4603ccf328eb9716d798
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.newPrice;
 
import lombok.Data;
 
@Data
public class OKXAccount {
 
    String passPhrase;
    boolean isSimluate;
    public String baseUrl;
    public RequestHandler requestHandler;
    public boolean showLimitUsage;
 
    public OKXAccount(){}
 
    public OKXAccount(String baseUrl, String apiKey, String secretKey, String passPhrase,boolean isSimluate) {
        this.baseUrl = baseUrl;
        this.requestHandler = new RequestHandler(apiKey, secretKey,passPhrase);
        this.isSimluate = isSimluate;
    }
}