Skip to content

Commit

Permalink
fix: detection for arbitrum input-data(#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
leoslr committed Feb 10, 2022
1 parent ec14852 commit c2fe1f9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ const networks: Record<string, ethers.providers.Network> = {
fuse: { chainId: 122, name: 'fuse' },
celo: { chainId: 42220, name: 'celo' },
fantom: { chainId: 250, name: 'fantom' },
'arbitrum-rinkeby': { chainId: 421611, name: 'arbitrum-rinkeby' },
'arbitrum-one': { chainId: 42161, name: 'arbitrum-one' },
};

/**
Expand Down Expand Up @@ -43,6 +45,10 @@ export class MultichainExplorerApiProvider extends ethers.providers.EtherscanPro
return 'https://explorer.mainnet.near.org';
case 'aurora-testnet':
return 'https://explorer.testnet.near.org';
case 'arbitrum-rinkeby':
return 'https://testnet.arbiscan.io/';
case 'arbitrum-one':
return 'https://arbiscan.io/';
default:
return super.getBaseUrl();
}
Expand Down

0 comments on commit c2fe1f9

Please sign in to comment.