From 8b02a67231dc39a293c4d206e07643e9059b1982 Mon Sep 17 00:00:00 2001 From: rndquu Date: Fri, 25 Oct 2024 11:42:52 +0300 Subject: [PATCH] feat: use reloadly production proxy --- functions/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/helpers.ts b/functions/helpers.ts index 016b6800..cd300a13 100644 --- a/functions/helpers.ts +++ b/functions/helpers.ts @@ -52,7 +52,7 @@ export async function getAccessToken(env: Env): Promise { export function getBaseUrl(isSandbox: boolean): string { if (isSandbox === false) { - return "https://giftcards.reloadly.com"; + return "https://web3-gateway-test.com/proxy/reloadly/production"; } return "https://giftcards-sandbox.reloadly.com"; }