40 lines
1.5 KiB
JavaScript
40 lines
1.5 KiB
JavaScript
// const HOST_URL = "https://tpoint.agrimedia.cn";
|
|
const HOST_URL = window.location.protocol + "//" + window.location.host;
|
|
|
|
|
|
const serviceConfig = {
|
|
BASE_URL: HOST_URL,
|
|
HTTP_REQUEST_URL: HOST_URL,
|
|
TIMEOUT: 10000,
|
|
WALLET_NAME: "海南农综交易所",
|
|
POINTS_CONVERT_INTERVAL: "0,20",
|
|
ENDPOINTS: {
|
|
price: "/api/hn/getPrice",
|
|
homeBalance: "/api/hn/getAllBalance",
|
|
powerExchangeSubmit: "/api/hn/redeem/power",
|
|
bmtFlashExchangeSubmit: "/api/hn/redeem/justRedeem",
|
|
powerExchangeMuit: "/api/hn/redeem/getMuit",
|
|
bmtRedeemPowerRate: "/api/hn/redeem/getRedeemPowerRate",
|
|
bmtExchangeSubmit: "/api/hn/redeem/redeem_bmt",
|
|
transferFee: "/api/hn/transfer/getProp",
|
|
transferUser: "/api/hn/transfer/getUserInfo",
|
|
transferPowerSubmit: "/api/hn/transfer/transferPower",
|
|
transferPointsSubmit: "/api/hn/transfer/transferPoint",
|
|
transferLedger: "/api/hn/transfer/transferList",
|
|
walletFlowList: "/api/hn/wallet_flow/getList",
|
|
redeemRecordList: "/api/hn/redeem/redeemList",
|
|
coinIndex: "/api/coin/index",
|
|
userProfile: "/api/user",
|
|
walletDetail: "/api/hn/wallet/getWalletAddress",
|
|
walletSave: "/api/hn/wallet/saveAddress",
|
|
withdrawRate: "/api/hn/wallet/getRate",
|
|
withdrawSubmit: "/api/hn/wallet/withdraw",
|
|
pointsConvertHistoryList: "/api/integral/getTransferList",
|
|
pointsConvertAvailableList: "/api/integral/transferList",
|
|
pointsConvertSubmit: "/api/integral/doTransfer",
|
|
pointsConvertRecordDetail: "/api/integral/transferInfo",
|
|
},
|
|
};
|
|
|
|
export default serviceConfig;
|