We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af3396 commit bfd4423Copy full SHA for bfd4423
apps/tx-builder/src/lib/getAbi.ts
@@ -50,6 +50,8 @@ export enum SUPPORTED_CHAINS {
50
HARMONY = '1666600000',
51
HARMONY_TESTNET = '1666700000',
52
HOLESKY = '17000',
53
+ IMMUTABLE = '13371',
54
+ IMMUTABLE_TESTNET = '13473',
55
IOTEX = '4689',
56
IOTEX_TESTNET = '4690',
57
LINEA = '59144',
@@ -239,6 +241,14 @@ const getScanAPIBaseURL = (chain: string): undefined | { link: string; apiKey?:
239
241
link: 'https://api-moonriver.moonscan.io',
240
242
apiKey: TEMP_MOONRIVER_KEY,
243
}
244
+ case SUPPORTED_CHAINS.IMMUTABLE:
245
+ return {
246
+ link: 'https://explorer.immutable.com',
247
+ }
248
+ case SUPPORTED_CHAINS.IMMUTABLE_TESTNET:
249
250
+ link: 'https://explorer.testnet.immutable.com',
251
252
default:
253
return
254
0 commit comments