-
Notifications
You must be signed in to change notification settings - Fork 774
Open
Description
public class Main {
public static void main(String[] args) throws IOException {
BinanceApiClientFactory factory = BinanceApiClientFactory.newInstance();
BinanceApiRestClient client = factory.newRestClient();
OrderBook orderBook = client.getOrderBook("BTCUSDT", 10000);
List<OrderBookEntry> asks = orderBook.getAsks();
OrderBookEntry firstAskEntry = asks.get(0);
System.out.println(firstAskEntry.getPrice() + " / " + firstAskEntry.getQty());
}
}
But have
binance-api-client-1.0.2.jar(com/binance/api/client/BinanceApiClientFactory.class)
class file has wrong version 55.0, should be 52.0
Please remove or make sure it appears in the correct subdirectory of the classpath.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels