Skip to content

Commit

Permalink
Merge pull request #2 from brewmaster012/athens-rpc
Browse files Browse the repository at this point in the history
update athens RPC
  • Loading branch information
brewmaster012 committed Aug 21, 2024
2 parents 312d251 + 944c996 commit 4ed229e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions common.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4ed229e

Please sign in to comment.