export const BASE_URLS = { core: "https://api.ambapays.com", events: "https://events.api.ambapays.com", referral: "https://referralapi-fclnigvupq-uc.a.run.app", } as const; export type BaseUrlKey = keyof typeof BASE_URLS; export const getBaseUrl = (key: BaseUrlKey): string => BASE_URLS[key];