1
zj
4 days ago effab9619e17b97ac98b035eaa64ba99b27f5dc6
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
package com.yami.trading.huobi.websocket.model.generic;
 
import java.math.BigDecimal;
 
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class Chain {
 
  private String chain;
 
  private String baseChain;
 
  private String baseChainProtocol;
 
  private Boolean isDynamic;
 
  private int numOfConfirmations;
 
  private int numOfFastConfirmations;
 
  private String depositStatus;
 
  private BigDecimal minDepositAmt;
 
  private String withdrawStatus;
 
  private BigDecimal minWithdrawAmt;
 
  private BigDecimal maxWithdrawAmt;
 
  private BigDecimal withdrawQuotaPerDay;
 
  private BigDecimal withdrawQuotaPerYear;
 
  private BigDecimal withdrawQuotaTotal;
 
  private int withdrawPrecision;
 
  private  String withdrawFeeType;
 
  private BigDecimal transactFeeWithdraw;
 
  private BigDecimal minTransactFeeWithdraw;
 
  private BigDecimal maxTransactFeeWithdraw;
 
  private BigDecimal transactFeeRateWithdraw;
 
}