We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 374146a commit 0fc2579Copy full SHA for 0fc2579
apps/staking/src/config/server.ts
@@ -37,10 +37,7 @@ export const WALLETCONNECT_PROJECT_ID = demandInProduction(
37
export const RPC = process.env.RPC;
38
export const IS_MAINNET = process.env.IS_MAINNET !== undefined;
39
export const HERMES_URL =
40
- process.env.HERMES_URL ??
41
- (IS_PRODUCTION_SERVER
42
- ? "https://hermes.pyth.network"
43
- : "https://hermes-beta.pyth.network");
+ process.env.HERMES_URL ?? "https://hermes.pyth.network";
44
export const BLOCKED_REGIONS =
45
process.env.BLOCKED_REGIONS === undefined ||
46
process.env.BLOCKED_REGIONS === ""
0 commit comments