Skip to content

Commit

Permalink
fix(chain): update chain uris to .fluence.dev domains (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
folex authored Aug 29, 2024
1 parent 1a8bb82 commit e1cc1d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cli/src/lib/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ export const CHAIN_URLS_FOR_CONTAINERS: Record<ChainENV, string> = {
};

export const WS_CHAIN_URLS: Record<ChainENV, string> = {
kras: "wss://ws.fluence.raas.gelato.cloud",
dar: "wss://ws.fluence-testnet.t.raas.gelato.cloud",
stage: "wss://ws-123420000220.raas-testnet.gelato.digital",
kras: "wss://ws.mainnet.fluence.dev",
dar: "wss://ws.testnet.fluence.dev",
stage: "wss://ws.stage.fluence.dev",
local: `wss://${CHAIN_RPC_CONTAINER_NAME}:${CHAIN_RPC_PORT}`,
};

Expand Down
6 changes: 3 additions & 3 deletions packages/common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export type ChainENV = (typeof CHAIN_ENV)[number];
export const isChainEnv = getIsUnion(CHAIN_ENV);

export const CHAIN_URLS_WITHOUT_LOCAL = {
kras: "https://rpc.fluence.raas.gelato.cloud",
dar: "https://rpc.fluence-testnet.t.raas.gelato.cloud",
stage: "https://rpc-123420000220.raas-testnet.gelato.digital",
kras: "https://rpc.mainnet.fluence.dev",
dar: "https://rpc.testnet.fluence.dev",
stage: "https://rpc.stage.fluence.dev",
} as const satisfies Record<Exclude<ChainENV, "local">, string>;

export const CHAIN_URLS = {
Expand Down

0 comments on commit e1cc1d8

Please sign in to comment.