All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xeiam.xchange.examples.bittrex.v1.BittrexExamplesUtils Maven / Gradle / Ivy

Go to download

Provides a set of examples that demonstrate how to use XChange in client applications

The newest version!
package com.xeiam.xchange.examples.bittrex.v1;

import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.bittrex.v1.BittrexExchange;

public class BittrexExamplesUtils {

  public static Exchange getExchange() {

    ExchangeSpecification exSpec = new ExchangeSpecification(BittrexExchange.class);
    exSpec.setApiKey("407495e35a2b4de2823b6eb70f15d767");
    exSpec.setSecretKey("77deef66d6bd4a6e80332dd4dd502f10");

    return ExchangeFactory.INSTANCE.createExchange(exSpec);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy