org.knowm.xchange.clevercoin.service.polling.CleverCoinAccountServiceRaw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-clevercoin Show documentation
Show all versions of xchange-clevercoin Show documentation
XChange implementation for the CleverCoin Exchange
The newest version!
package org.knowm.xchange.clevercoin.service.polling;
import java.io.IOException;
import java.math.BigDecimal;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.clevercoin.CleverCoinAuthenticated;
import org.knowm.xchange.clevercoin.dto.account.CleverCoinBalance;
import org.knowm.xchange.clevercoin.dto.account.CleverCoinDepositAddress;
import org.knowm.xchange.clevercoin.dto.account.CleverCoinWithdrawal;
import org.knowm.xchange.clevercoin.service.CleverCoinDigest;
import org.knowm.xchange.exceptions.ExchangeException;
import si.mazi.rescu.RestProxyFactory;
/**
* @author Karsten Nilsen & Konstantin Indjov
*/
public class CleverCoinAccountServiceRaw extends CleverCoinBasePollingService {
private final CleverCoinDigest signatureCreator;
private final CleverCoinAuthenticated CleverCoinAuthenticated;
/**
* Constructor
*
* @param exchange
*/
protected CleverCoinAccountServiceRaw(Exchange exchange) {
super(exchange);
this.CleverCoinAuthenticated = RestProxyFactory.createProxy(CleverCoinAuthenticated.class, exchange.getExchangeSpecification().getSslUri());
this.signatureCreator = CleverCoinDigest.createInstance(exchange.getExchangeSpecification().getSecretKey(),
exchange.getExchangeSpecification().getApiKey());
}
public CleverCoinBalance[] getCleverCoinBalance() throws IOException {
return CleverCoinAuthenticated.getBalance(exchange.getExchangeSpecification().getApiKey(), signatureCreator, exchange.getNonceFactory());
}
public CleverCoinWithdrawal withdrawCleverCoinFunds(BigDecimal amount, final String address) throws IOException {
// amount = amount including the 0.0001 BTC network fee
final CleverCoinWithdrawal response = CleverCoinAuthenticated.withdrawBitcoin(exchange.getExchangeSpecification().getApiKey(), signatureCreator,
exchange.getNonceFactory(), amount, address);
if (response.getError() != null) {
throw new ExchangeException("Withdrawing funds from CleverCoin failed: " + response.getError());
}
return response;
}
public CleverCoinDepositAddress getCleverCoinBitcoinDepositAddress() throws IOException {
final CleverCoinDepositAddress response = CleverCoinAuthenticated.getBitcoinDepositAddress(exchange.getExchangeSpecification().getApiKey(),
signatureCreator, exchange.getNonceFactory());
if (response.getError() != null) {
throw new ExchangeException("Requesting Bitcoin deposit address failed: " + response.getError());
}
return response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy