org.knowm.xchange.bitcoinde.service.BitcoindeAccountService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitcoinde Show documentation
Show all versions of xchange-bitcoinde Show documentation
XChange implementation for Bitcoin.de exchange.
The newest version!
package org.knowm.xchange.bitcoinde.service;
import java.io.IOException;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.bitcoinde.BitcoindeAdapters;
import org.knowm.xchange.dto.account.AccountInfo;
import org.knowm.xchange.service.account.AccountService;
/**
* @author kaiserfr
*/
public class BitcoindeAccountService extends BitcoindeAccountServiceRaw implements AccountService {
public BitcoindeAccountService(Exchange exchange) {
super(exchange);
}
@Override
public AccountInfo getAccountInfo() throws IOException {
return BitcoindeAdapters.adaptAccountInfo(getBitcoindeAccount());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy