use of org.knowm.xchange.bibox.dto.account.BiboxAssetsResult in project XChange by knowm.
the class BiboxAccountServiceRaw method getBiboxAccountInfo.
public List<BiboxAsset> getBiboxAccountInfo() {
try {
BiboxSingleResponse<BiboxAssetsResult> response = bibox.assets(ASSETS_CMD.json(), apiKey, signatureCreator);
throwErrors(response);
return response.get().getResult().getAssets_list();
} catch (BiboxException e) {
throw new ExchangeException(e.getMessage());
}
}
Aggregations