A java implementation of the Binance API Specification
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
417 B

package com.sigmaflare.binancej;
final class Constant {
private Constant() {}
static final String BASE_ENDPOINT = "https://api.binance.com";
static final String NO_RESPONSE_TEXT = "No response returned from {}";
static final String NO_RESPONSE_TEXT_FORMATTED = "No response returned from %s";
static final String SYMBOL_AND_INTERVAL_MUST_BE_SUPPLIED = "Symbol and interval must be supplied";
}