File tree Expand file tree Collapse file tree
main/java/com/kucoin/sdk/rest/response Expand file tree Collapse file tree 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).
1313<dependency>
1414 <groupId>com.kucoin</groupId>
1515 <artifactId>kucoin-java-sdk</artifactId>
16- <version>1.0.17 </version>
16+ <version>1.0.18 </version>
1717</dependency>
1818```
1919## Usage
Original file line number Diff line number Diff line change 66
77 <groupId >com.kucoin</groupId >
88 <artifactId >kucoin-java-sdk</artifactId >
9- <version >1.0.17 </version >
9+ <version >1.0.18 </version >
1010
1111 <name >kucoin-java-sdk</name >
1212 <description >kucoin-java-sdk</description >
Original file line number Diff line number Diff line change @@ -20,6 +20,12 @@ public class DepositAddressResponse {
2020
2121 private String chain ;
2222
23+ private String chainId ;
24+
25+ private String to ;
26+
27+ private String currency ;
28+
2329 private String contractAddress ;
2430
2531}
Original file line number Diff line number Diff line change @@ -408,12 +408,7 @@ public void withdrawalAPIV3() throws Exception {
408408
409409 @ Test
410410 public void depositAPI () throws Exception {
411- exception .expect (KucoinApiException .class );
412- exception .expectMessage ("Sandbox environment cannot get deposit address" );
413411 liveKucoinRestClient .depositAPI ().createDepositAddress ("KCS" , null );
414-
415- exception .expect (KucoinApiException .class );
416- exception .expectMessage ("Sandbox environment cannot get deposit address" );
417412 liveKucoinRestClient .depositAPI ().getDepositAddress ("KCS" , null );
418413
419414 exception .expect (KucoinApiException .class );
You can’t perform that action at this time.
0 commit comments