Skip to content

Commit 0fc2579

Browse files
authored
fix: staking app hermes url now that devnet uses stable too (#1944)
* fix: staking app hermes url now that devnet uses stable too * prettier
1 parent 374146a commit 0fc2579

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/staking/src/config/server.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ export const WALLETCONNECT_PROJECT_ID = demandInProduction(
3737
export const RPC = process.env.RPC;
3838
export const IS_MAINNET = process.env.IS_MAINNET !== undefined;
3939
export const HERMES_URL =
40-
process.env.HERMES_URL ??
41-
(IS_PRODUCTION_SERVER
42-
? "https://hermes.pyth.network"
43-
: "https://hermes-beta.pyth.network");
40+
process.env.HERMES_URL ?? "https://hermes.pyth.network";
4441
export const BLOCKED_REGIONS =
4542
process.env.BLOCKED_REGIONS === undefined ||
4643
process.env.BLOCKED_REGIONS === ""

0 commit comments

Comments
 (0)