File tree Expand file tree Collapse file tree 3 files changed +1
-138
lines changed
src/main/java/com/cryptomarket/sdk Expand file tree Collapse file tree 3 files changed +1
-138
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2626import com .cryptomarket .sdk .exceptions .CryptomarketSDKException ;
2727import com .cryptomarket .sdk .models .Address ;
2828import com .cryptomarket .sdk .models .AmountLock ;
29- import com .cryptomarket .sdk .models .ApiKey ;
3029import com .cryptomarket .sdk .models .Balance ;
3130import com .cryptomarket .sdk .models .Candle ;
3231import com .cryptomarket .sdk .models .Commission ;
@@ -1130,9 +1129,6 @@ public List<Trade> getSpotTradesHistory(
11301129 public List <Trade > getSpotTradesHistory (ParamsBuilder paramsBuilder )
11311130 throws CryptomarketSDKException ;
11321131
1133- // USER MANAGEMENT
1134-
1135- public List <ApiKey > getUserApiKeys () throws CryptomarketSDKException ;
11361132
11371133 // WALLET MANAGEMENT
11381134
Original file line number Diff line number Diff line change 3030import com .cryptomarket .sdk .exceptions .CryptomarketSDKException ;
3131import com .cryptomarket .sdk .models .Address ;
3232import com .cryptomarket .sdk .models .AmountLock ;
33- import com .cryptomarket .sdk .models .ApiKey ;
3433import com .cryptomarket .sdk .models .Balance ;
3534import com .cryptomarket .sdk .models .Candle ;
3635import com .cryptomarket .sdk .models .Commission ;
@@ -743,14 +742,7 @@ public List<Trade> getSpotTradesHistory(ParamsBuilder paramsBuilder)
743742 paramsBuilder .build ());
744743 return adapter .listFromJson (jsonResponse , Trade .class );
745744 }
746- // USER MANAGEMENT
747-
748- @ Override
749- public List <ApiKey > getUserApiKeys () throws CryptomarketSDKException {
750- String jsonResponse = httpClient .get ("user/api-keys" ,null );
751- return adapter .listFromJson (jsonResponse , ApiKey .class );
752- }
753-
745+
754746 // WALLET MANAGEMENT
755747
756748 @ Override
You can’t perform that action at this time.
0 commit comments