From 944c9963adad33fb98a0ac8a499af11288803706 Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Tue, 20 Aug 2024 11:19:02 -0500 Subject: [PATCH] update athens RPC --- common.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/common.js b/common.js index eb4bfbc..41480a6 100644 --- a/common.js +++ b/common.js @@ -256,13 +256,16 @@ if (network == "mockmain") { "18.143.71.236", "54.254.133.239", ]; + nodeURL = "https://athens.rpc.zetachain.com/D0608595-63FF-4EA9-91FC-0587BB0D968A/internal"; + evmURL = "https://athens.rpc.zetachain.com/D0608595-63FF-4EA9-91FC-0587BB0D968A/evm"; + tmURL = "https://athens.rpc.zetachain.com/D0608595-63FF-4EA9-91FC-0587BB0D968A/rpc"; } -nodeURL = `http://${zetaIP}:1317`; -evmURL = `http://${zetaIP}:8545`; +nodeURL = nodeURL ?? `http://${zetaIP}:1317`; +evmURL = evmURL ?? `http://${zetaIP}:8545`; corsProxyURL = `http://${auxIP}:8088`; checkURL = `http://${auxIP}:8888`; // remote server that tests port 6668 p2p nodes -tmURL = `http://${zetaIP}:26657`; +tmURL = tmURL && `http://${zetaIP}:26657`; hashServerURL = `http://${auxIP}:9001`; RPCByChainID[zetaChainID] = evmURL;