Skip to content

Commit

Permalink
fix(arbitrum): arbiscan link (#4843)
Browse files Browse the repository at this point in the history
### Description

had wrong base url

### Test plan

tested manually

https://arbiscan.io/tx/0xf29f70cec2261b0fee23b2c0e076d657378e033decfc70cc9194a1b3d6022e83

### Related issues

na

### Backwards compatibility

na
  • Loading branch information
cajubelt authored Feb 3, 2024
1 parent 5548c88 commit 871e186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web3/networkConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,13 +435,13 @@ export const blockExplorerUrls: BlockExplorerUrls = {
baseNftUrl: `${ETHERSCAN_BASE_URL_SEPOLIA}/nft/`,
},
[NetworkId['arbitrum-one']]: {
baseTxUrl: `${ARBISCAN_BASE_URL_ONE}/txs/`,
baseTxUrl: `${ARBISCAN_BASE_URL_ONE}/tx/`,
baseAddressUrl: `${ARBISCAN_BASE_URL_ONE}/address/`,
baseTokenUrl: `${ARBISCAN_BASE_URL_ONE}/token/`,
baseNftUrl: `${ARBISCAN_BASE_URL_ONE}/token/`,
},
[NetworkId['arbitrum-sepolia']]: {
baseTxUrl: `${ARBISCAN_BASE_URL_SEPOLIA}/txs/`,
baseTxUrl: `${ARBISCAN_BASE_URL_SEPOLIA}/tx/`,
baseAddressUrl: `${ARBISCAN_BASE_URL_SEPOLIA}/address/`,
baseTokenUrl: `${ARBISCAN_BASE_URL_SEPOLIA}/token/`,
baseNftUrl: `${ARBISCAN_BASE_URL_SEPOLIA}/token/`,
Expand Down

0 comments on commit 871e186

Please sign in to comment.