diff --git a/deploy/event-watcher/env/staging-mainnet.env b/deploy/event-watcher/env/staging-mainnet.env index a5eb298ba..6a1f49556 100644 --- a/deploy/event-watcher/env/staging-mainnet.env +++ b/deploy/event-watcher/env/staging-mainnet.env @@ -39,7 +39,7 @@ SEI_RPC=https://sei-rest.brocha.in SOLANA_RPC=https://api.mainnet-beta.solana.com SUI_RPC=https://rpc.mainnet.sui.io TERRA_RPC=https://terra-classic-fcd.publicnode.com -TERRA2_RPC=https://phoenix-lcd.terra.dev +TERRA2_RPC=https://lcd-terra.tfl.foundation XPLA_RPC=https://dimension-lcd.xpla.dev ACALA_RPS=30 ALGORAND_RPS=30 diff --git a/deploy/tx-tracker/env/production-mainnet.env b/deploy/tx-tracker/env/production-mainnet.env index cbd731110..146d9ceb7 100644 --- a/deploy/tx-tracker/env/production-mainnet.env +++ b/deploy/tx-tracker/env/production-mainnet.env @@ -92,7 +92,7 @@ SUI_REQUESTS_PER_MINUTE=120 TERRA_BASE_URL=https://columbus-fcd.terra.dev TERRA_REQUESTS_PER_MINUTE=12 -TERRA2_BASE_URL=https://phoenix-lcd.terra.dev +TERRA2_BASE_URL=https://lcd-terra.tfl.foundation TERRA2_REQUESTS_PER_MINUTE=12 WORMCHAIN_BASE_URL=https://wormchain-rpc.quickapi.com diff --git a/deploy/tx-tracker/env/staging-mainnet.env b/deploy/tx-tracker/env/staging-mainnet.env index 42fb847dc..2fd0f2d87 100644 --- a/deploy/tx-tracker/env/staging-mainnet.env +++ b/deploy/tx-tracker/env/staging-mainnet.env @@ -92,7 +92,7 @@ SUI_REQUESTS_PER_MINUTE=120 TERRA_BASE_URL=https://columbus-fcd.terra.dev TERRA_REQUESTS_PER_MINUTE=12 -TERRA2_BASE_URL=https://phoenix-lcd.terra.dev +TERRA2_BASE_URL=https://lcd-terra.tfl.foundation TERRA2_REQUESTS_PER_MINUTE=12 WORMCHAIN_BASE_URL=https://wormchain-rpc.quickapi.com diff --git a/event-watcher/src/consts.ts b/event-watcher/src/consts.ts index afda574d3..10eeb5946 100644 --- a/event-watcher/src/consts.ts +++ b/event-watcher/src/consts.ts @@ -49,7 +49,7 @@ export const RPCS_BY_CHAIN_MAINNET: { [key in ChainName]?: string } = { solana: env.SOLANA_RPC || 'https://api.mainnet-beta.solana.com', sui: env.SUI_RPC || 'https://rpc.mainnet.sui.io', terra: env.TERRA_RPC || 'https://terra-classic-fcd.publicnode.com', // 'https://columbus-fcd.terra.dev', - terra2: env.TERRA2_RPC || 'https://phoenix-lcd.terra.dev', + terra2: env.TERRA2_RPC || 'https://lcd-terra.tfl.foundation', wormchain: env.WORMCHAIN_RPC || 'https://wormchain.jumpisolated.com', xpla: env.XPLA_RPC || 'https://dimension-lcd.xpla.dev', } as const;