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.
19 lines
577 B
19 lines
577 B
|
|
const IS_TEST = false;
|
|
const H5_BASE_URL = '/api';
|
|
const BASE_URL = IS_TEST?'https://sapi.payairs.com':'https://api.gream.ltd';
|
|
const H5_MARKET_URL = '/market';
|
|
const MARKET_URL = IS_TEST?'https://market.acefinex.com':'https://market.gream.ltd';
|
|
const KEY = IS_TEST?'8M8gym8SaXs9kL27x7eQrXp4ELOqC8gl':'8M8gym8SaXs9kL27x7eQrXp4ELOqC8gl';
|
|
const WSSURL = IS_TEST?'wss://market.acefinex.com/wss/':'wss://market.gream.ltd/wss/';
|
|
const SHOW_DIALOG=true
|
|
export default {
|
|
IS_TEST,
|
|
BASE_URL,
|
|
MARKET_URL,
|
|
KEY,
|
|
WSSURL,
|
|
SHOW_DIALOG,
|
|
H5_BASE_URL,
|
|
H5_MARKET_URL
|
|
}
|