com.xeiam.xchange.examples.bitbay.BitBayMetaDataDemo 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.bitbay;
import java.io.IOException;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.bitbay.BitbayExchange;
public class BitBayMetaDataDemo {
public static void main(String[] args) throws IOException {
// Use the factory to get bitbay exchange API using default settings
Exchange anx = ExchangeFactory.INSTANCE.createExchange(BitbayExchange.class.getName());
System.out.println(anx.getMetaData().toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy