From 456c688628549f769fb56b5c99b729373a50f615 Mon Sep 17 00:00:00 2001 From: Calvin Koepke Date: Mon, 2 Dec 2024 19:40:08 -0700 Subject: [PATCH] chore: hardcode env --- src/constants.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 60d7b7ad..0360807e 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -12,7 +12,9 @@ export const REGIONS = [ { name: "Cape Town, Africa", value: "af-south-1", prefix: "f" }, ]; export const TIC_RATE_MAGIC = 35; // 35 is the ticrate in DOOM WASM they use to calculate time. -export const API_BASE_URL = import.meta.env.VITE_API_BASE_URL; -export const API_KEY = import.meta.env.VITE_API_KEY; +// Mainnet api key, change to env variables when we have access. +export const API_BASE_URL = "https://rewardengine.dripdropz.io/api/v1"; +// Mainnet api key, change to env variables when we have access. +export const API_KEY = "d93212b3-dbdc-40d0-befd-f90508c6232d"; export const SESSION_ID_KEY = "session-id"; export const MAX_PLAYERS = 4;