Skip to content

Commit

Permalink
update testnet guardian RPCs
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-gray committed Dec 7, 2023
1 parent 5ed854a commit b7de149
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,11 @@ export const getExplorerName = (chainId: ChainId) =>
: "Explorer";
export const WORMHOLE_RPC_HOSTS =
CLUSTER === "testnet"
? ["https://wormhole-v2-testnet-api.certus.one"]
? [
"https://guardian-01.testnet.xlabs.xyz",
"https://guardian-02.testnet.xlabs.xyz",
"https://wormhole-v2-testnet-api.certus.one",
]
: ["http://localhost:7071"];
export const ETH_NETWORK_CHAIN_ID = CLUSTER === "testnet" ? 5 : 1337;
export const SEPOLIA_NETWORK_CHAIN_ID = CLUSTER === "testnet" ? 11155111 : 1337;
Expand Down

0 comments on commit b7de149

Please sign in to comment.