diff --git a/src/config/cache.config.ts b/src/config/cache.config.ts index e6835a6a..facdf3fb 100644 --- a/src/config/cache.config.ts +++ b/src/config/cache.config.ts @@ -3,7 +3,7 @@ import { VOLTA_CHAIN_ID } from "../utils/constants"; const cacheConfig: Record = { [VOLTA_CHAIN_ID]: { - url: "https://identitycache-dev.energyweb.org/v1/", + url: "https://volta-identitycache.energyweb.org/v1/", cacheServerSupportsAuth: true, }, }; diff --git a/src/config/chain.config.ts b/src/config/chain.config.ts index 39e0769d..f49a6933 100644 --- a/src/config/chain.config.ts +++ b/src/config/chain.config.ts @@ -35,7 +35,7 @@ const chainConfig: Record = { [VOLTA_CHAIN_ID]: { chainName: Chain.VOLTA, chainDisplayName: "Energy Web Volta Testnet", - rpcUrl: "https://volta-rpc-vkn5r5zx4ke71f9hcu0c.energyweb.org/", + rpcUrl: "https://volta-rpc.energyweb.org/", ensRegistryAddress: VOLTA_ENS_REGISTRY_ADDRESS, ensResolverAddress: VOLTA_RESOLVER_V1_ADDRESS, ensPublicResolverAddress: VOLTA_PUBLIC_RESOLVER_ADDRESS, diff --git a/src/config/messaging.config.ts b/src/config/messaging.config.ts index 502bec68..d8b851ee 100644 --- a/src/config/messaging.config.ts +++ b/src/config/messaging.config.ts @@ -11,7 +11,7 @@ export interface MessagingConfig { const messagingConfig: Record = { [VOLTA_CHAIN_ID]: { messagingMethod: MessagingMethod.Nats, - natsServerUrl: "https://identityevents-dev.energyweb.org/", + natsServerUrl: "https://volta-identityevents.energyweb.org/", natsEnvironmentName: "ewf-volta", }, };