Skip to content

Commit

Permalink
fix: change failing ethereum rpc url (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
SGiaccobasso authored Oct 9, 2024
1 parent 89680a5 commit f5764a7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/serious-rules-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@axelarjs/maestro": patch
---

change ethereum rpc urls
5 changes: 4 additions & 1 deletion apps/maestro/src/config/evm-chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ function createRpcUrlConfig(chain: Chain, additionalUrls: string[] = []) {
export const ALL_CHAINS: ExtendedWagmiChainConfig[] = [
{
...mainnet,
rpcUrls: createRpcUrlConfig(mainnet, ["https://eth.llamarpc.com"]),
rpcUrls: {
default: { http: ["https://eth.llamarpc.com", "https://eth.drpc.org"] }, // Temporarily using this url
public: { http: ["https://eth.llamarpc.com", "https://eth.drpc.org"] },
},
axelarChainId: "ethereum",
axelarChainName: "ethereum",
environment: ENVIRONMENTS.mainnet,
Expand Down

0 comments on commit f5764a7

Please sign in to comment.