org.knowm.xchange.examples.quoine.account.AccountInfoDemo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-examples Show documentation
Show all versions of xchange-examples Show documentation
Provides a set of examples that demonstrate how to use XChange in client applications
The newest version!
package org.knowm.xchange.examples.quoine.account;
import java.io.IOException;
import java.util.Arrays;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.dto.account.AccountInfo;
import org.knowm.xchange.examples.quoine.QuoineExamplesUtils;
import org.knowm.xchange.quoine.dto.account.FiatAccount;
import org.knowm.xchange.quoine.service.QuoineAccountServiceRaw;
import org.knowm.xchange.service.account.AccountService;
/** Demo requesting account info at Quoine */
public class AccountInfoDemo {
public static void main(String[] args) throws IOException {
Exchange exchange = QuoineExamplesUtils.createExchange();
// Interested in the private account functionality (authentication)
AccountService accountService = exchange.getAccountService();
generic(accountService);
raw((QuoineAccountServiceRaw) accountService);
}
private static void generic(AccountService accountService) throws IOException {
AccountInfo accountInfo = accountService.getAccountInfo();
System.out.println(accountInfo.toString());
}
private static void raw(QuoineAccountServiceRaw quoineAccountServiceRaw) throws IOException {
final FiatAccount[] quoineFiatAccountInfo = quoineAccountServiceRaw.getQuoineFiatAccountInfo();
System.out.println(Arrays.toString(quoineFiatAccountInfo));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy