Skip to content

Commit

Permalink
update env
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanmino committed Sep 4, 2024
1 parent 8030ef4 commit 5e0b472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ export const IS_DEV = (typeof __DEV__ === 'boolean' && __DEV__) || !!Number(ENAB
export const IS_TEST = IS_TESTING === 'true';
export const IS_PROD = !IS_DEV && !IS_TEST;

export const RPC_PROXY_BASE_URL = IS_PROD ? RPC_PROXY_BASE_URL_PROD : RPC_PROXY_BASE_URL_DEV;
export const RPC_PROXY_API_KEY = IS_PROD ? RPC_PROXY_API_KEY_PROD : RPC_PROXY_API_KEY_DEV;
export const RPC_PROXY_BASE_URL = RPC_PROXY_BASE_URL_PROD;
export const RPC_PROXY_API_KEY = RPC_PROXY_API_KEY_PROD;

0 comments on commit 5e0b472

Please sign in to comment.