Skip to content

Commit

Permalink
added updates for immutable json rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehaz committed Aug 13, 2024
1 parent 4325db7 commit 711d2e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/configs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export const testnetsClaimHostUrl = 'https://testnets.claim.linkdrop.io'
export const polygonJSONRPCUrl = 'https://rpc-mainnet.maticvigil.com/v1/ad4cd2ea018ddb1ccd0418ffa43c27b3d99fbd55'
export const mainnetJSONRPCUrl = 'https://mainnet.infura.io/v3/620c738fbe1843a18f47ada0e60e738a'
export const baseJSONRPCUrl = 'https://developer-access-mainnet.base.org'
export const immutableZkevmJSONRPCUrl = 'https://immutable-zkevm.drpc.org'
export const immutableZkevmJSONRPCUrl = 'https://rpc.immutable.com'
2 changes: 1 addition & 1 deletion src/helpers/define-network-name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const defineNetworkName = (chainId: number | null) : string => {
case 1: return 'mainnet'
case 137: return 'matic'
case 8453: return 'base'
case 13371: return 'immutableZkevm'
case 13371: return 'immutable-zkevm'
default: return 'mainnet'
}
}
Expand Down

0 comments on commit 711d2e4

Please sign in to comment.