File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
main/java/com/kucoin/sdk/rest/response Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ The detailed document [https://docs.kucoin.com](https://docs.kucoin.com).
13
13
<dependency>
14
14
<groupId>com.kucoin</groupId>
15
15
<artifactId>kucoin-java-sdk</artifactId>
16
- <version>1.0.17 </version>
16
+ <version>1.0.18 </version>
17
17
</dependency>
18
18
```
19
19
## Usage
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.kucoin</groupId >
8
8
<artifactId >kucoin-java-sdk</artifactId >
9
- <version >1.0.17 </version >
9
+ <version >1.0.18 </version >
10
10
11
11
<name >kucoin-java-sdk</name >
12
12
<description >kucoin-java-sdk</description >
Original file line number Diff line number Diff line change @@ -20,6 +20,12 @@ public class DepositAddressResponse {
20
20
21
21
private String chain ;
22
22
23
+ private String chainId ;
24
+
25
+ private String to ;
26
+
27
+ private String currency ;
28
+
23
29
private String contractAddress ;
24
30
25
31
}
Original file line number Diff line number Diff line change @@ -408,12 +408,7 @@ public void withdrawalAPIV3() throws Exception {
408
408
409
409
@ Test
410
410
public void depositAPI () throws Exception {
411
- exception .expect (KucoinApiException .class );
412
- exception .expectMessage ("Sandbox environment cannot get deposit address" );
413
411
liveKucoinRestClient .depositAPI ().createDepositAddress ("KCS" , null );
414
-
415
- exception .expect (KucoinApiException .class );
416
- exception .expectMessage ("Sandbox environment cannot get deposit address" );
417
412
liveKucoinRestClient .depositAPI ().getDepositAddress ("KCS" , null );
418
413
419
414
exception .expect (KucoinApiException .class );
You can’t perform that action at this time.
0 commit comments