diff --git a/apps/kyberswap-interface/.env.production b/apps/kyberswap-interface/.env.production index 420c1fe2c9..714052eeca 100644 --- a/apps/kyberswap-interface/.env.production +++ b/apps/kyberswap-interface/.env.production @@ -18,7 +18,7 @@ VITE_TELEGRAM_BOT_URL=https://t.me/KyberSwapNotifierBot VITE_TRANSAK_URL=https://global.transak.com VITE_TRANSAK_API_KEY=48949c0b-2d20-4e3a-a311-51ca91ae8c0d -VITE_KS_SETTING_API=https://ks-setting.kyberswap.com/api +VITE_KS_SETTING_API=https://pre-ks-setting.kyberengineering.io/api VITE_COMMON_SERVICE_API=https://common-service.kyberswap.com/api VITE_BLACKJACK_API=https://blackjack.kyberswap.com/api @@ -43,7 +43,7 @@ VITE_WALLETCONNECT_PROJECT_ID=b5b37945209ea323811f1032e84eaeb5 VITE_CAMPAIGN_URL=https://arbitrum-stip.kyberswap.com/api VITE_REFERRAL_URL=https://referral.kyberswap.com/api -VITE_TOKEN_API_URL=https://token-api.kyberswap.com/api +VITE_TOKEN_API_URL=https://pre-token-api.kyberengineering.io/api VITE_ZAP_API_URL=https://zap-api.kyberswap.com # VITE_ZAP_API_URL=https://pre-zap-api.kyberengineering.io VITE_ZAP_EARN_URL=https://earn-service.kyberswap.com/api diff --git a/packages/schema/src/constants/index.ts b/packages/schema/src/constants/index.ts index a087665019..9f535edae8 100644 --- a/packages/schema/src/constants/index.ts +++ b/packages/schema/src/constants/index.ts @@ -8,13 +8,14 @@ export const NATIVE_TOKEN_ADDRESS = '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE' export const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000'; export const API_URLS = { - KYBERSWAP_SETTING_API: 'https://ks-setting.kyberswap.com/api', + KYBERSWAP_SETTING_API: 'https://pre-ks-setting.kyberengineering.io/api', ZAP_API: 'https://zap-api.kyberswap.com', // ZAP_API: 'https://pre-zap-api.kyberengineering.io', COINGECKO_API_URL: 'https://api.coingecko.com/api/v3', GO_PLUS_API: 'https://api.gopluslabs.io/api/v1/token_security', ZAP_EARN_API: 'https://earn-service.kyberswap.com/api', - TOKEN_API: 'https://token-api.kyberswap.com/api', + // ZAP_EARN_API: 'https://pre-zap-earn-service.kyberengineering.io/api', + TOKEN_API: 'https://pre-token-api.kyberengineering.io/api', DOCUMENT: { ZAP_FEE_MODEL: 'https://docs.kyberswap.com/kyberswap-solutions/kyberswap-zap-as-a-service/zap-fee-model', },