Skip to content

Commit bfd4423

Browse files
committed
feat: add immutable explorer links to recognize proxies
1 parent 8af3396 commit bfd4423

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

apps/tx-builder/src/lib/getAbi.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ export enum SUPPORTED_CHAINS {
5050
HARMONY = '1666600000',
5151
HARMONY_TESTNET = '1666700000',
5252
HOLESKY = '17000',
53+
IMMUTABLE = '13371',
54+
IMMUTABLE_TESTNET = '13473',
5355
IOTEX = '4689',
5456
IOTEX_TESTNET = '4690',
5557
LINEA = '59144',
@@ -239,6 +241,14 @@ const getScanAPIBaseURL = (chain: string): undefined | { link: string; apiKey?:
239241
link: 'https://api-moonriver.moonscan.io',
240242
apiKey: TEMP_MOONRIVER_KEY,
241243
}
244+
case SUPPORTED_CHAINS.IMMUTABLE:
245+
return {
246+
link: 'https://explorer.immutable.com',
247+
}
248+
case SUPPORTED_CHAINS.IMMUTABLE_TESTNET:
249+
return {
250+
link: 'https://explorer.testnet.immutable.com',
251+
}
242252
default:
243253
return
244254
}

0 commit comments

Comments
 (0)