Skip to content

Commit

Permalink
support arbitrum sepolia (#11723)
Browse files Browse the repository at this point in the history
  • Loading branch information
shileiwill authored Jan 11, 2024
1 parent 4551522 commit a3aa6a9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/scripts/common/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ func explorerLinkPrefix(chainID int64) (prefix string) {
prefix = "https://goerli.arbiscan.io"
case ArbitrumOneChainID: // Arbitrum mainnet
prefix = "https://arbiscan.io"
case ArbitrumSepoliaChainID: // Arbitrum Sepolia
prefix = "https://sepolia.arbiscan.io"

case 56: // BSC mainnet
prefix = "https://bscscan.com"
Expand Down Expand Up @@ -233,6 +235,8 @@ func automationExplorerNetworkName(chainID int64) (prefix string) {
prefix = "arbitrum-goerli"
case ArbitrumOneChainID: // Arbitrum mainnet
prefix = "arbitrum"
case ArbitrumSepoliaChainID: // Arbitrum Sepolia
prefix = "arbitrum-sepolia"

case 56: // BSC mainnet
prefix = "bsc"
Expand Down

0 comments on commit a3aa6a9

Please sign in to comment.