org.knowm.xchange.idex.IdexExchangeSpecification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-idex Show documentation
Show all versions of xchange-idex Show documentation
XChange implementation for the Idex Exchange
package org.knowm.xchange.idex;
import org.knowm.xchange.ExchangeSpecification;
public class IdexExchangeSpecification extends ExchangeSpecification {
public static final String IDEX_API =
System.getProperty("xchange.idex.api", "https://api.idex.market/");
public IdexExchangeSpecification() {
super(IdexExchange.class);
}
@Override
public String getExchangeClassName() {
return IdexExchange.class.getCanonicalName();
}
@Override
public String getExchangeName() {
return "idex";
}
@Override
public String getSslUri() {
return IDEX_API;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy