org.knowm.xchange.coinegg.service.CoinEggBaseService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinegg Show documentation
Show all versions of xchange-coinegg Show documentation
XChange implementation for the CoinEgg Exchange
The newest version!
package org.knowm.xchange.coinegg.service;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.client.ExchangeRestProxyBuilder;
import org.knowm.xchange.coinegg.CoinEgg;
import org.knowm.xchange.service.BaseExchangeService;
import org.knowm.xchange.service.BaseService;
public class CoinEggBaseService extends BaseExchangeService implements BaseService {
protected CoinEgg coinEgg;
public CoinEggBaseService(Exchange exchange) {
super(exchange);
this.coinEgg =
ExchangeRestProxyBuilder.forInterface(CoinEgg.class, exchange.getExchangeSpecification())
.build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy