com.xeiam.xchange.examples.bittrex.v1.account.BittrexAccountDemo 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 com.xeiam.xchange.examples.bittrex.v1.account;
import java.io.IOException;
import java.util.List;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.bittrex.v1.dto.account.BittrexBalance;
import com.xeiam.xchange.bittrex.v1.service.polling.BittrexAccountServiceRaw;
import com.xeiam.xchange.dto.trade.Wallet;
import com.xeiam.xchange.examples.bittrex.v1.BittrexExamplesUtils;
import com.xeiam.xchange.service.polling.account.PollingAccountService;
public class BittrexAccountDemo {
public static void main(String[] args) throws IOException {
Exchange exchange = BittrexExamplesUtils.getExchange();
PollingAccountService accountService = exchange.getPollingAccountService();
generic(accountService);
raw((BittrexAccountServiceRaw) accountService);
}
private static void generic(PollingAccountService accountService) throws IOException {
System.out.println("----------GENERIC---------");
List wallets = accountService.getAccountInfo().getWallets();
System.out.println(wallets);
System.out.println(accountService.requestDepositAddress("BTC"));
}
private static void raw(BittrexAccountServiceRaw accountService) throws IOException {
System.out.println("------------RAW-----------");
List wallets = accountService.getBittrexAccountInfo();
System.out.println(wallets);
System.out.println(accountService.getBittrexDepositAddress("BTC"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy