![JAR search and dependency download from the Maven repository](/logo.png)
com.xeiam.xchange.coinbaseex.service.polling.CoinbaseExAccountServiceRaw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinbaseex Show documentation
Show all versions of xchange-coinbaseex Show documentation
XChange implementation for Coinbase (Exchange)
The newest version!
package com.xeiam.xchange.coinbaseex.service.polling;
import java.io.IOException;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.coinbaseex.CoinbaseEx;
import com.xeiam.xchange.coinbaseex.dto.account.CoinbaseExAccount;
public class CoinbaseExAccountServiceRaw extends CoinbaseExBasePollingService {
public CoinbaseExAccountServiceRaw(Exchange exchange) {
super(CoinbaseEx.class, exchange);
}
public CoinbaseExAccount[] getCoinbaseExAccountInfo() throws IOException {
return coinbaseEx.getAccounts(apiKey, digest, getTimestamp(), passphrase);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy