com.xeiam.xchange.examples.campbx.account.CampBXAccountDataDemo 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.campbx.account;
import java.io.IOException;
import java.math.BigDecimal;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.campbx.CampBXExchange;
import com.xeiam.xchange.currency.Currencies;
import com.xeiam.xchange.dto.account.AccountInfo;
import com.xeiam.xchange.service.polling.account.PollingAccountService;
/**
* Demonstrate requesting Market Data from CampBX
*/
public class CampBXAccountDataDemo {
public static void main(String[] args) throws IOException {
// Use the factory to get Campbx exchange API using default settings
Exchange campbx = ExchangeFactory.INSTANCE.createExchange(CampBXExchange.class.getName());
campbx.getExchangeSpecification().setUserName("XChange");
campbx.getExchangeSpecification().setPassword("The Java API");
PollingAccountService accountService = campbx.getPollingAccountService();
AccountInfo accountInfo = accountService.getAccountInfo();
System.out.println("accountInfo = " + accountInfo);
String depositAddr = accountService.requestDepositAddress(Currencies.BTC);
System.out.println("depositAddr = " + depositAddr);
String txid = accountService.withdrawFunds("BTC", new BigDecimal("0.1"), "1FgpMU9CgQffjLK5YoR2yK5XGj5cq4iCBf");
System.out.println("See the withdrawal transaction: http://blockchain.info/tx-index/" + txid);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy