Skip to content

Commit

Permalink
fix: revert config changes from dev to volta
Browse files Browse the repository at this point in the history
Make sense to have these changes but better to apply in a separate PR
  • Loading branch information
jrhender committed Dec 14, 2021
1 parent 19f65bb commit adafda4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/cache.config.ts
Expand Up @@ -3,7 +3,7 @@ import { VOLTA_CHAIN_ID } from "../utils/constants";

const cacheConfig: Record<number, CacheServerClientOptions> = {
[VOLTA_CHAIN_ID]: {
url: "https://identitycache-dev.energyweb.org/v1/",
url: "https://volta-identitycache.energyweb.org/v1/",
cacheServerSupportsAuth: true,
},
};
Expand Down
2 changes: 1 addition & 1 deletion src/config/chain.config.ts
Expand Up @@ -35,7 +35,7 @@ const chainConfig: Record<number, ChainConfig> = {
[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,
Expand Down
2 changes: 1 addition & 1 deletion src/config/messaging.config.ts
Expand Up @@ -11,7 +11,7 @@ export interface MessagingConfig {
const messagingConfig: Record<ChainId, MessagingConfig> = {
[VOLTA_CHAIN_ID]: {
messagingMethod: MessagingMethod.Nats,
natsServerUrl: "https://identityevents-dev.energyweb.org/",
natsServerUrl: "https://volta-identityevents.energyweb.org/",
natsEnvironmentName: "ewf-volta",
},
};
Expand Down

0 comments on commit adafda4

Please sign in to comment.