org.knowm.xchange.kucoin.service.APIConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kucoin Show documentation
Show all versions of xchange-kucoin Show documentation
XChange implementation for the Kucoin Exchange
The newest version!
/** Copyright 2019 Mek Global Limited. */
package org.knowm.xchange.kucoin.service;
import io.vavr.API;
/** Based on code by zicong.lu on 2018/12/14. */
public class APIConstants {
public static final String API_HEADER_KEY = "KC-API-KEY";
public static final String API_HEADER_SIGN = "KC-API-SIGN";
public static final String API_HEADER_PASSPHRASE = "KC-API-PASSPHRASE";
public static final String API_HEADER_TIMESTAMP = "KC-API-TIMESTAMP";
public static final String API_HEADER_KEY_VERSION = "KC-API-KEY-VERSION";
}