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.
14 lines
381 B
14 lines
381 B
const IS_TEST = true;
|
|
const BASE_URL = IS_TEST?'https://sapi.payairs.com':'';
|
|
const MARKET_URL = IS_TEST?'https://market.acefinex.com':'';
|
|
const KEY = IS_TEST?'jsabdjhfbsjndfksnjndja,sndmbstart':'';
|
|
const WSSURL = IS_TEST?'wss://market.acefinex.com/wss/':'';
|
|
const SHOW_DIALOG=true
|
|
export default {
|
|
IS_TEST,
|
|
BASE_URL,
|
|
MARKET_URL,
|
|
KEY,
|
|
WSSURL,
|
|
SHOW_DIALOG
|
|
}
|