Skip to content

Commit

Permalink
chore: trying a different default rpc provider
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito committed May 14, 2024
1 parent 4a59340 commit e69db9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/common-const/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const RPC_URL_ENVS: Record<SupportedChainId, string | undefined> = {
const DEFAULT_RPC_URL: Record<SupportedChainId, { url: string; usesInfura: boolean }> = {
[SupportedChainId.MAINNET]: { url: `https://mainnet.infura.io/v3/${INFURA_KEY}`, usesInfura: true },
[SupportedChainId.GNOSIS_CHAIN]: { url: `https://rpc.gnosis.gateway.fm`, usesInfura: false },
[SupportedChainId.ARBITRUM_ONE]: { url: `https://arb1.arbitrum.io/rpc`, usesInfura: false },
[SupportedChainId.ARBITRUM_ONE]: { url: `https://arbitrum.llamarpc.com`, usesInfura: false },
[SupportedChainId.SEPOLIA]: { url: `https://sepolia.infura.io/v3/${INFURA_KEY}`, usesInfura: true },
}

Expand Down

0 comments on commit e69db9e

Please sign in to comment.