com.xeiam.xchange.examples.bitso.account.BitsoAccountDemo 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.bitso.account;
import java.io.IOException;
import java.math.BigDecimal;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.bitso.dto.account.BitsoBalance;
import com.xeiam.xchange.bitso.dto.account.BitsoDepositAddress;
import com.xeiam.xchange.bitso.service.polling.BitsoAccountServiceRaw;
import com.xeiam.xchange.currency.Currencies;
import com.xeiam.xchange.dto.account.AccountInfo;
import com.xeiam.xchange.examples.bitso.BitsoDemoUtils;
import com.xeiam.xchange.service.polling.account.PollingAccountService;
/**
*
* Example showing the following:
*
*
* - Connect to Bitso exchange with authentication
* - View account balance
* - Get the bitcoin deposit address
* - Withdraw a small amount of BTC
*
*/
public class BitsoAccountDemo {
public static void main(String[] args) throws IOException {
Exchange bitso = BitsoDemoUtils.createExchange();
PollingAccountService accountService = bitso.getPollingAccountService();
generic(accountService);
raw((BitsoAccountServiceRaw) accountService);
}
private static void generic(PollingAccountService accountService) throws IOException {
// Get the account information
AccountInfo accountInfo = accountService.getAccountInfo();
System.out.println("AccountInfo as String: " + accountInfo.toString());
String depositAddress = accountService.requestDepositAddress(Currencies.BTC);
System.out.println("Deposit address: " + depositAddress);
String withdrawResult = accountService.withdrawFunds("BTC", new BigDecimal(1).movePointLeft(4), "1PxYUsgKdw75sdLmM7HYP2p74LEq3mxM6L");
System.out.println("withdrawResult = " + withdrawResult);
}
private static void raw(BitsoAccountServiceRaw accountService) throws IOException {
BitsoBalance bitsoBalance = accountService.getBitsoBalance();
System.out.println("Bitso balance: " + bitsoBalance);
BitsoDepositAddress depositAddress = accountService.getBitsoBitcoinDepositAddress();
System.out.println("Bitcoin deposit address: " + depositAddress);
String withdrawResult = accountService.withdrawBitsoFunds(new BigDecimal(1).movePointLeft(4), "1PxYUsgKdw75sdLmM7HYP2p74LEq3mxM6L");
System.out.println("Bitso withdrawal response = " + withdrawResult);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy