@sentio/runtime 4.0.0-rc.7 → 4.0.0-rc.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/multicall.ts DELETED
@@ -1,1605 +0,0 @@
1
- import { EthChainId } from '@sentio/chain'
2
- import { BytesLike, Interface } from 'ethers'
3
-
4
- // https://www.multicall3.com/abi#json
5
- const ABI = [
6
- {
7
- inputs: [
8
- {
9
- components: [
10
- {
11
- internalType: 'address',
12
- name: 'target',
13
- type: 'address'
14
- },
15
- {
16
- internalType: 'bytes',
17
- name: 'callData',
18
- type: 'bytes'
19
- }
20
- ],
21
- internalType: 'struct Multicall3.Call[]',
22
- name: 'calls',
23
- type: 'tuple[]'
24
- }
25
- ],
26
- name: 'aggregate',
27
- outputs: [
28
- {
29
- internalType: 'uint256',
30
- name: 'blockNumber',
31
- type: 'uint256'
32
- },
33
- {
34
- internalType: 'bytes[]',
35
- name: 'returnData',
36
- type: 'bytes[]'
37
- }
38
- ],
39
- stateMutability: 'payable',
40
- type: 'function'
41
- },
42
- {
43
- inputs: [
44
- {
45
- components: [
46
- {
47
- internalType: 'address',
48
- name: 'target',
49
- type: 'address'
50
- },
51
- {
52
- internalType: 'bool',
53
- name: 'allowFailure',
54
- type: 'bool'
55
- },
56
- {
57
- internalType: 'bytes',
58
- name: 'callData',
59
- type: 'bytes'
60
- }
61
- ],
62
- internalType: 'struct Multicall3.Call3[]',
63
- name: 'calls',
64
- type: 'tuple[]'
65
- }
66
- ],
67
- name: 'aggregate3',
68
- outputs: [
69
- {
70
- components: [
71
- {
72
- internalType: 'bool',
73
- name: 'success',
74
- type: 'bool'
75
- },
76
- {
77
- internalType: 'bytes',
78
- name: 'returnData',
79
- type: 'bytes'
80
- }
81
- ],
82
- internalType: 'struct Multicall3.Result[]',
83
- name: 'returnData',
84
- type: 'tuple[]'
85
- }
86
- ],
87
- stateMutability: 'payable',
88
- type: 'function'
89
- },
90
- {
91
- inputs: [
92
- {
93
- components: [
94
- {
95
- internalType: 'address',
96
- name: 'target',
97
- type: 'address'
98
- },
99
- {
100
- internalType: 'bool',
101
- name: 'allowFailure',
102
- type: 'bool'
103
- },
104
- {
105
- internalType: 'uint256',
106
- name: 'value',
107
- type: 'uint256'
108
- },
109
- {
110
- internalType: 'bytes',
111
- name: 'callData',
112
- type: 'bytes'
113
- }
114
- ],
115
- internalType: 'struct Multicall3.Call3Value[]',
116
- name: 'calls',
117
- type: 'tuple[]'
118
- }
119
- ],
120
- name: 'aggregate3Value',
121
- outputs: [
122
- {
123
- components: [
124
- {
125
- internalType: 'bool',
126
- name: 'success',
127
- type: 'bool'
128
- },
129
- {
130
- internalType: 'bytes',
131
- name: 'returnData',
132
- type: 'bytes'
133
- }
134
- ],
135
- internalType: 'struct Multicall3.Result[]',
136
- name: 'returnData',
137
- type: 'tuple[]'
138
- }
139
- ],
140
- stateMutability: 'payable',
141
- type: 'function'
142
- },
143
- {
144
- inputs: [
145
- {
146
- components: [
147
- {
148
- internalType: 'address',
149
- name: 'target',
150
- type: 'address'
151
- },
152
- {
153
- internalType: 'bytes',
154
- name: 'callData',
155
- type: 'bytes'
156
- }
157
- ],
158
- internalType: 'struct Multicall3.Call[]',
159
- name: 'calls',
160
- type: 'tuple[]'
161
- }
162
- ],
163
- name: 'blockAndAggregate',
164
- outputs: [
165
- {
166
- internalType: 'uint256',
167
- name: 'blockNumber',
168
- type: 'uint256'
169
- },
170
- {
171
- internalType: 'bytes32',
172
- name: 'blockHash',
173
- type: 'bytes32'
174
- },
175
- {
176
- components: [
177
- {
178
- internalType: 'bool',
179
- name: 'success',
180
- type: 'bool'
181
- },
182
- {
183
- internalType: 'bytes',
184
- name: 'returnData',
185
- type: 'bytes'
186
- }
187
- ],
188
- internalType: 'struct Multicall3.Result[]',
189
- name: 'returnData',
190
- type: 'tuple[]'
191
- }
192
- ],
193
- stateMutability: 'payable',
194
- type: 'function'
195
- },
196
- {
197
- inputs: [],
198
- name: 'getBasefee',
199
- outputs: [
200
- {
201
- internalType: 'uint256',
202
- name: 'basefee',
203
- type: 'uint256'
204
- }
205
- ],
206
- stateMutability: 'view',
207
- type: 'function'
208
- },
209
- {
210
- inputs: [
211
- {
212
- internalType: 'uint256',
213
- name: 'blockNumber',
214
- type: 'uint256'
215
- }
216
- ],
217
- name: 'getBlockHash',
218
- outputs: [
219
- {
220
- internalType: 'bytes32',
221
- name: 'blockHash',
222
- type: 'bytes32'
223
- }
224
- ],
225
- stateMutability: 'view',
226
- type: 'function'
227
- },
228
- {
229
- inputs: [],
230
- name: 'getBlockNumber',
231
- outputs: [
232
- {
233
- internalType: 'uint256',
234
- name: 'blockNumber',
235
- type: 'uint256'
236
- }
237
- ],
238
- stateMutability: 'view',
239
- type: 'function'
240
- },
241
- {
242
- inputs: [],
243
- name: 'getChainId',
244
- outputs: [
245
- {
246
- internalType: 'uint256',
247
- name: 'chainid',
248
- type: 'uint256'
249
- }
250
- ],
251
- stateMutability: 'view',
252
- type: 'function'
253
- },
254
- {
255
- inputs: [],
256
- name: 'getCurrentBlockCoinbase',
257
- outputs: [
258
- {
259
- internalType: 'address',
260
- name: 'coinbase',
261
- type: 'address'
262
- }
263
- ],
264
- stateMutability: 'view',
265
- type: 'function'
266
- },
267
- {
268
- inputs: [],
269
- name: 'getCurrentBlockDifficulty',
270
- outputs: [
271
- {
272
- internalType: 'uint256',
273
- name: 'difficulty',
274
- type: 'uint256'
275
- }
276
- ],
277
- stateMutability: 'view',
278
- type: 'function'
279
- },
280
- {
281
- inputs: [],
282
- name: 'getCurrentBlockGasLimit',
283
- outputs: [
284
- {
285
- internalType: 'uint256',
286
- name: 'gaslimit',
287
- type: 'uint256'
288
- }
289
- ],
290
- stateMutability: 'view',
291
- type: 'function'
292
- },
293
- {
294
- inputs: [],
295
- name: 'getCurrentBlockTimestamp',
296
- outputs: [
297
- {
298
- internalType: 'uint256',
299
- name: 'timestamp',
300
- type: 'uint256'
301
- }
302
- ],
303
- stateMutability: 'view',
304
- type: 'function'
305
- },
306
- {
307
- inputs: [
308
- {
309
- internalType: 'address',
310
- name: 'addr',
311
- type: 'address'
312
- }
313
- ],
314
- name: 'getEthBalance',
315
- outputs: [
316
- {
317
- internalType: 'uint256',
318
- name: 'balance',
319
- type: 'uint256'
320
- }
321
- ],
322
- stateMutability: 'view',
323
- type: 'function'
324
- },
325
- {
326
- inputs: [],
327
- name: 'getLastBlockHash',
328
- outputs: [
329
- {
330
- internalType: 'bytes32',
331
- name: 'blockHash',
332
- type: 'bytes32'
333
- }
334
- ],
335
- stateMutability: 'view',
336
- type: 'function'
337
- },
338
- {
339
- inputs: [
340
- {
341
- internalType: 'bool',
342
- name: 'requireSuccess',
343
- type: 'bool'
344
- },
345
- {
346
- components: [
347
- {
348
- internalType: 'address',
349
- name: 'target',
350
- type: 'address'
351
- },
352
- {
353
- internalType: 'bytes',
354
- name: 'callData',
355
- type: 'bytes'
356
- }
357
- ],
358
- internalType: 'struct Multicall3.Call[]',
359
- name: 'calls',
360
- type: 'tuple[]'
361
- }
362
- ],
363
- name: 'tryAggregate',
364
- outputs: [
365
- {
366
- components: [
367
- {
368
- internalType: 'bool',
369
- name: 'success',
370
- type: 'bool'
371
- },
372
- {
373
- internalType: 'bytes',
374
- name: 'returnData',
375
- type: 'bytes'
376
- }
377
- ],
378
- internalType: 'struct Multicall3.Result[]',
379
- name: 'returnData',
380
- type: 'tuple[]'
381
- }
382
- ],
383
- stateMutability: 'payable',
384
- type: 'function'
385
- },
386
- {
387
- inputs: [
388
- {
389
- internalType: 'bool',
390
- name: 'requireSuccess',
391
- type: 'bool'
392
- },
393
- {
394
- components: [
395
- {
396
- internalType: 'address',
397
- name: 'target',
398
- type: 'address'
399
- },
400
- {
401
- internalType: 'bytes',
402
- name: 'callData',
403
- type: 'bytes'
404
- }
405
- ],
406
- internalType: 'struct Multicall3.Call[]',
407
- name: 'calls',
408
- type: 'tuple[]'
409
- }
410
- ],
411
- name: 'tryBlockAndAggregate',
412
- outputs: [
413
- {
414
- internalType: 'uint256',
415
- name: 'blockNumber',
416
- type: 'uint256'
417
- },
418
- {
419
- internalType: 'bytes32',
420
- name: 'blockHash',
421
- type: 'bytes32'
422
- },
423
- {
424
- components: [
425
- {
426
- internalType: 'bool',
427
- name: 'success',
428
- type: 'bool'
429
- },
430
- {
431
- internalType: 'bytes',
432
- name: 'returnData',
433
- type: 'bytes'
434
- }
435
- ],
436
- internalType: 'struct Multicall3.Result[]',
437
- name: 'returnData',
438
- type: 'tuple[]'
439
- }
440
- ],
441
- stateMutability: 'payable',
442
- type: 'function'
443
- }
444
- ]
445
-
446
- // https://github.com/mds1/multicall/blob/main/deployments.json
447
- const DEPLOYMENTS = [
448
- {
449
- name: 'Mainnet',
450
- chainId: 1,
451
- url: 'https://etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
452
- },
453
- {
454
- name: 'Kovan',
455
- chainId: 42,
456
- url: 'https://kovan.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
457
- },
458
- {
459
- name: 'Rinkeby',
460
- chainId: 4,
461
- url: 'https://rinkeby.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
462
- },
463
- {
464
- name: 'Görli',
465
- chainId: 5,
466
- url: 'https://goerli.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
467
- },
468
- {
469
- name: 'Ropsten',
470
- chainId: 3,
471
- url: 'https://ropsten.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
472
- },
473
- {
474
- name: 'Sepolia',
475
- chainId: 11155111,
476
- url: 'https://sepolia.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
477
- },
478
- {
479
- name: 'Xterio Chain',
480
- chainId: 112358,
481
- url: 'https://xterscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
482
- },
483
- {
484
- name: 'Xterio Testnet',
485
- chainId: 1637450,
486
- url: 'https://testnet.xterscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
487
- },
488
- {
489
- name: 'Optimism',
490
- chainId: 10,
491
- url: 'https://optimistic.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
492
- },
493
- {
494
- name: 'Optimism Kovan',
495
- chainId: 69,
496
- url: 'https://kovan-optimistic.etherscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
497
- },
498
- {
499
- name: 'Optimism Görli',
500
- chainId: 420,
501
- url: 'https://blockscout.com/optimism/goerli/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
502
- },
503
- {
504
- name: 'Optimism Sepolia',
505
- chainId: 11155420,
506
- url: 'https://optimism-sepolia.blockscout.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
507
- },
508
- {
509
- name: 'Arbitrum',
510
- chainId: 42161,
511
- url: 'https://arbiscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
512
- },
513
- {
514
- name: 'Arbitrum Nova',
515
- chainId: 42170,
516
- url: 'https://nova.arbiscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
517
- },
518
- {
519
- name: 'Arbitrum Görli',
520
- chainId: 421613,
521
- url: 'https://goerli-rollup-explorer.arbitrum.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
522
- },
523
- {
524
- name: 'Arbitrum Sepolia',
525
- chainId: 421614,
526
- url: 'https://sepolia-explorer.arbitrum.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
527
- },
528
- {
529
- name: 'Arbitrum Rinkeby',
530
- chainId: 421611,
531
- url: 'https://testnet.arbiscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
532
- },
533
- {
534
- name: 'Stylus Testnet',
535
- chainId: 23011913,
536
- url: 'https://stylus-testnet-explorer.arbitrum.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
537
- },
538
- {
539
- name: 'Polygon',
540
- chainId: 137,
541
- url: 'https://polygonscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
542
- },
543
- {
544
- name: 'Mumbai',
545
- chainId: 80001,
546
- url: 'https://mumbai.polygonscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
547
- },
548
- {
549
- name: 'Amoy',
550
- chainId: 80002,
551
- url: 'https://amoy.polygonscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
552
- },
553
- {
554
- name: 'Polygon zkEVM',
555
- chainId: 1101,
556
- url: 'https://zkevm.polygonscan.com/address/0xca11bde05977b3631167028862be2a173976ca11#code'
557
- },
558
- {
559
- name: 'Polygon zkEVM Testnet',
560
- chainId: 1442,
561
- url: 'https://testnet-zkevm.polygonscan.com/address/0xca11bde05977b3631167028862be2a173976ca11#code'
562
- },
563
- {
564
- name: 'Cardona zkEVM Testnet',
565
- chainId: 2442,
566
- url: 'https://cardona-zkevm.polygonscan.com/address/0xca11bde05977b3631167028862be2a173976ca11#code'
567
- },
568
- {
569
- name: 'Gnosis Chain (xDai)',
570
- chainId: 100,
571
- url: 'https://blockscout.com/xdai/mainnet/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
572
- },
573
- {
574
- name: 'Chiado (Gnosis Chain Testnet)',
575
- chainId: 10200,
576
- url: 'https://blockscout.chiadochain.net/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
577
- },
578
- {
579
- name: 'Avalanche',
580
- chainId: 43114,
581
- url: 'https://snowtrace.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
582
- },
583
- {
584
- name: 'Avalanche Fuji',
585
- chainId: 43113,
586
- url: 'https://testnet.snowtrace.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
587
- },
588
- {
589
- name: 'Fantom Testnet',
590
- chainId: 4002,
591
- url: 'https://testnet.ftmscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
592
- },
593
- {
594
- name: 'Fantom Opera',
595
- chainId: 250,
596
- url: 'https://ftmscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
597
- },
598
- {
599
- name: 'Fantom Sonic',
600
- chainId: 64240,
601
- url: 'https://public-sonic.fantom.network/address/0xca11bde05977b3631167028862be2a173976ca11'
602
- },
603
- {
604
- name: 'BNB Smart Chain',
605
- chainId: 56,
606
- url: 'https://bscscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
607
- },
608
- {
609
- name: 'BNB Smart Chain Testnet',
610
- chainId: 97,
611
- url: 'https://testnet.bscscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
612
- },
613
- {
614
- name: 'opBNB Testnet',
615
- chainId: 5611,
616
- url: 'https://opbnbscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?p=1&tab=Contract'
617
- },
618
- {
619
- name: 'opBNB Mainnet',
620
- chainId: 204,
621
- url: 'https://mainnet.opbnbscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?p=1&tab=Contract'
622
- },
623
- {
624
- name: 'Moonbeam',
625
- chainId: 1284,
626
- url: 'https://moonscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
627
- },
628
- {
629
- name: 'Moonriver',
630
- chainId: 1285,
631
- url: 'https://moonriver.moonscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
632
- },
633
- {
634
- name: 'Moonbase Alpha Testnet',
635
- chainId: 1287,
636
- url: 'https://moonbase.moonscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
637
- },
638
- {
639
- name: 'Palm',
640
- chainId: 11297108109,
641
- url: 'https://palm.chainlens.com/contracts/0xca11bde05977b3631167028862be2a173976ca11/sources'
642
- },
643
- {
644
- name: 'Palm Testnet',
645
- chainId: 11297108099,
646
- url: 'https://testnet.palm.chainlens.com/contracts/0xca11bde05977b3631167028862be2a173976ca11/sources'
647
- },
648
- {
649
- name: 'Harmony',
650
- chainId: 1666600000,
651
- url: 'https://explorer.harmony.one/address/0xcA11bde05977b3631167028862bE2a173976CA11?activeTab=7'
652
- },
653
- {
654
- name: 'Cronos',
655
- chainId: 25,
656
- url: 'https://cronoscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
657
- },
658
- {
659
- name: 'Cronos Testnet',
660
- chainId: 338,
661
- url: 'https://cronos.org/explorer/testnet3/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
662
- },
663
- {
664
- name: 'Fuse',
665
- chainId: 122,
666
- url: 'https://explorer.fuse.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
667
- },
668
- {
669
- name: 'Flare Mainnet',
670
- chainId: 14,
671
- url: 'https://flare-explorer.flare.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
672
- },
673
- {
674
- name: 'Songbird Canary Network',
675
- chainId: 19,
676
- url: 'https://songbird-explorer.flare.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
677
- },
678
- {
679
- name: 'Coston Testnet',
680
- chainId: 16,
681
- url: 'https://coston-explorer.flare.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
682
- },
683
- {
684
- name: 'Coston2 Testnet',
685
- chainId: 114,
686
- url: 'https://coston2-explorer.flare.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
687
- },
688
- {
689
- name: 'Boba',
690
- chainId: 288,
691
- url: 'https://blockexplorer.boba.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
692
- },
693
- {
694
- name: 'Aurora',
695
- chainId: 1313161554,
696
- url: 'https://explorer.mainnet.aurora.dev/address/0xcA11bde05977b3631167028862bE2a173976CA11'
697
- },
698
- {
699
- name: 'Astar',
700
- chainId: 592,
701
- url: 'https://blockscout.com/astar/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
702
- },
703
- {
704
- name: 'Astar zKyoto Testnet',
705
- chainId: 6038361,
706
- url: 'https://zkyoto.explorer.startale.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
707
- },
708
- {
709
- name: 'Astar zkEVM',
710
- chainId: 3776,
711
- url: 'https://astar-zkevm.explorer.startale.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
712
- },
713
- {
714
- name: 'OKC',
715
- chainId: 66,
716
- url: 'https://www.oklink.com/en/okc/address/0xcA11bde05977b3631167028862bE2a173976CA11'
717
- },
718
- {
719
- name: 'Heco Chain',
720
- chainId: 128,
721
- url: 'https://hecoinfo.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
722
- },
723
- {
724
- name: 'Metis Andromeda',
725
- chainId: 1088,
726
- url: 'https://andromeda-explorer.metis.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
727
- },
728
- {
729
- name: 'Metis Goerli',
730
- chainId: 599,
731
- url: 'https://goerli.explorer.metisdevops.link/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
732
- },
733
- {
734
- name: 'Metis Sepolia',
735
- chainId: 59902,
736
- url: 'https://sepolia-explorer.metisdevops.link/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
737
- },
738
- {
739
- name: 'RSK',
740
- chainId: 30,
741
- url: 'https://explorer.rsk.co/address/0xcA11bde05977b3631167028862bE2a173976CA11'
742
- },
743
- {
744
- name: 'RSK Testnet',
745
- chainId: 31,
746
- url: 'https://explorer.testnet.rsk.co/address/0xcA11bde05977b3631167028862bE2a173976CA11'
747
- },
748
- {
749
- name: 'Evmos',
750
- chainId: 9001,
751
- url: 'https://evm.evmos.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
752
- },
753
- {
754
- name: 'Evmos Testnet',
755
- chainId: 9000,
756
- url: 'https://evm.evmos.dev/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
757
- },
758
- {
759
- name: 'Thundercore',
760
- chainId: 108,
761
- url: 'https://viewblock.io/thundercore/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=code'
762
- },
763
- {
764
- name: 'Thundercore Testnet',
765
- chainId: 18,
766
- url: 'https://explorer-testnet.thundercore.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
767
- },
768
- {
769
- name: 'Oasis',
770
- chainId: 42262,
771
- url: 'https://explorer.emerald.oasis.dev/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
772
- },
773
- {
774
- name: 'Oasis Sapphire',
775
- chainId: 23294,
776
- url: 'https://explorer.sapphire.oasis.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
777
- },
778
- {
779
- name: 'Celo',
780
- chainId: 42220,
781
- url: 'https://explorer.celo.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
782
- },
783
- {
784
- name: 'Celo Alfajores Testnet',
785
- chainId: 44787,
786
- url: 'https://explorer.celo.org/alfajores/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
787
- },
788
- {
789
- name: 'Godwoken',
790
- chainId: 71402,
791
- url: 'https://v1.gwscan.com/account/0xcA11bde05977b3631167028862bE2a173976CA11'
792
- },
793
- {
794
- name: 'Godwoken Testnet',
795
- chainId: 71401,
796
- url: 'https://gw-explorer.nervosdao.community/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
797
- },
798
- {
799
- name: 'Klaytn',
800
- chainId: 8217,
801
- url: 'https://scope.klaytn.com/account/0xcA11bde05977b3631167028862bE2a173976CA11'
802
- },
803
- {
804
- name: 'Klaytn Testnet (Baobab)',
805
- chainId: 1001,
806
- url: 'https://baobab.klaytnscope.com/account/0xca11bde05977b3631167028862be2a173976ca11?tabId=contractCode'
807
- },
808
- {
809
- name: 'Milkomeda',
810
- chainId: 2001,
811
- url: 'https://explorer-mainnet-cardano-evm.c1.milkomeda.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
812
- },
813
- {
814
- name: 'KCC',
815
- chainId: 321,
816
- url: 'https://explorer.kcc.io/en/address/0xcA11bde05977b3631167028862bE2a173976CA11'
817
- },
818
- {
819
- name: 'Velas',
820
- chainId: 106,
821
- url: 'https://evmexplorer.velas.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
822
- },
823
- {
824
- name: 'Telos',
825
- chainId: 40,
826
- url: 'https://www.teloscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#contract'
827
- },
828
- {
829
- name: 'Step Network',
830
- chainId: 1234,
831
- url: 'https://stepscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
832
- },
833
- {
834
- name: 'Canto',
835
- chainId: 7700,
836
- url: 'https://tuber.build/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
837
- },
838
- {
839
- name: 'Canto Testnet',
840
- chainId: 7701,
841
- url: 'https://testnet.tuber.build/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
842
- },
843
- {
844
- name: 'Iotex',
845
- chainId: 4689,
846
- url: 'https://iotexscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#transactions'
847
- },
848
- {
849
- name: 'Bitgert',
850
- chainId: 32520,
851
- url: 'https://brisescan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
852
- },
853
- {
854
- name: 'Kava',
855
- chainId: 2222,
856
- url: 'https://explorer.kava.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
857
- },
858
- {
859
- name: 'Mantle Sepolia Testnet',
860
- chainId: 5003,
861
- url: 'https://explorer.sepolia.mantle.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
862
- },
863
- {
864
- name: 'Mantle Testnet',
865
- chainId: 5001,
866
- url: 'https://explorer.testnet.mantle.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
867
- },
868
- {
869
- name: 'Mantle',
870
- chainId: 5000,
871
- url: 'https://explorer.mantle.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
872
- },
873
- {
874
- name: 'Shardeum Sphinx',
875
- chainId: 8082,
876
- url: 'https://explorer.testnet.mantle.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
877
- },
878
- {
879
- name: 'Base Testnet (Goerli)',
880
- chainId: 84531,
881
- url: 'https://goerli.basescan.org/address/0xca11bde05977b3631167028862be2a173976ca11#code'
882
- },
883
- {
884
- name: 'Base Testnet (Sepolia)',
885
- chainId: 84532,
886
- url: 'https://base-sepolia.blockscout.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
887
- },
888
- {
889
- name: 'Base',
890
- chainId: 8453,
891
- url: 'https://basescan.org/address/0xca11bde05977b3631167028862be2a173976ca11#code'
892
- },
893
- {
894
- name: 'Kroma Testnet (Sepolia)',
895
- chainId: 2358,
896
- url: 'https://sepolia.kromascan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
897
- },
898
- {
899
- name: 'DeFiChain EVM Mainnet',
900
- chainId: 1130,
901
- url: 'https://meta.defiscan.live/address/0xcA11bde05977b3631167028862bE2a173976CA11'
902
- },
903
- {
904
- name: 'DeFiChain EVM Testnet',
905
- chainId: 1131,
906
- url: 'https://meta.defiscan.live/address/0xcA11bde05977b3631167028862bE2a173976CA11?network=TestNet'
907
- },
908
- {
909
- name: 'Defi Oracle Meta Mainnet',
910
- chainId: 138,
911
- url: 'https://blockscout.defi-oracle.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
912
- },
913
- {
914
- name: 'DFK Chain Test',
915
- chainId: 335,
916
- url: 'https://subnets-test.avax.network/defi-kingdoms/address/0xcA11bde05977b3631167028862bE2a173976CA11'
917
- },
918
- {
919
- name: 'DFK Chain',
920
- chainId: 53935,
921
- url: 'https://subnets.avax.network/defi-kingdoms/address/0xcA11bde05977b3631167028862bE2a173976CA11'
922
- },
923
- {
924
- name: 'Neon EVM DevNet',
925
- chainId: 245022926,
926
- url: 'https://devnet.neonscan.org/address/0xcA11bde05977b3631167028862bE2a173976CA11#contract'
927
- },
928
- {
929
- name: 'Linea Sepolia Testnet',
930
- chainId: 59141,
931
- url: 'https://sepolia.lineascan.build/address/0xca11bde05977b3631167028862be2a173976ca11#code'
932
- },
933
- {
934
- name: 'Linea Goerli Testnet',
935
- chainId: 59140,
936
- url: 'https://explorer.goerli.linea.build/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
937
- },
938
- {
939
- name: 'Linea Mainnet',
940
- chainId: 59144,
941
- url: 'https://lineascan.build/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
942
- },
943
- {
944
- name: 'Hashbit',
945
- chainId: 11119,
946
- url: 'https://explorer.hashbit.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
947
- },
948
- {
949
- name: 'Syscoin',
950
- chainId: 57,
951
- url: 'https://explorer.syscoin.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
952
- },
953
- {
954
- name: 'Syscoin Rollux Mainnet',
955
- chainId: 570,
956
- url: 'https://explorer.rollux.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
957
- },
958
- {
959
- name: 'Syscoin Tannebaum Testnet',
960
- chainId: 5700,
961
- url: 'https://tanenbaum.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
962
- },
963
- {
964
- name: 'Syscoin Tannebaum Rollux',
965
- chainId: 57000,
966
- url: 'https://rollux.tanenbaum.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
967
- },
968
- {
969
- name: 'Pulsechain v4 Testnet',
970
- chainId: 943,
971
- url: 'https://scan.v4.testnet.pulsechain.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
972
- },
973
- {
974
- name: 'Pulsechain Mainnet',
975
- chainId: 369,
976
- url: 'https://scan.pulsechain.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
977
- },
978
- {
979
- name: 'Zora Goerli Testnet',
980
- chainId: 999,
981
- url: 'https://testnet.explorer.zora.co/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
982
- },
983
- {
984
- name: 'Zora',
985
- chainId: 7777777,
986
- url: 'https://explorer.zora.co/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
987
- },
988
- {
989
- name: 'Zora Sepolia Testnet',
990
- chainId: 999999999,
991
- url: 'https://sepolia.explorer.zora.energy/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
992
- },
993
- {
994
- name: 'Darwinia Crab Network',
995
- chainId: 44,
996
- url: 'https://crab.subscan.io/account/0xca11bde05977b3631167028862be2a173976ca11'
997
- },
998
- {
999
- name: 'Darwinia Network',
1000
- chainId: 46,
1001
- url: 'https://darwinia.subscan.io/account/0xca11bde05977b3631167028862be2a173976ca11'
1002
- },
1003
- {
1004
- name: 'Chain Verse Mainnet',
1005
- chainId: 5555,
1006
- url: 'https://explorer.chainverse.info/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1007
- },
1008
- {
1009
- name: 'Scroll Alpha Testnet',
1010
- chainId: 534353,
1011
- url: 'https://blockscout.scroll.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1012
- },
1013
- {
1014
- name: 'Scroll Sepolia Testnet',
1015
- chainId: 534351,
1016
- url: 'https://sepolia.scrollscan.dev/address/0xca11bde05977b3631167028862be2a173976ca11#code'
1017
- },
1018
- {
1019
- name: 'Scroll',
1020
- chainId: 534352,
1021
- url: 'https://scrollscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1022
- },
1023
- {
1024
- name: 'Xodex',
1025
- chainId: 2415,
1026
- url: 'https://explorer.xo-dex.com/contracts/0xcA11bde05977b3631167028862bE2a173976CA11'
1027
- },
1028
- {
1029
- name: 'EOS EVM Testnet',
1030
- chainId: 15557,
1031
- url: 'https://explorer.testnet.evm.eosnetwork.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1032
- },
1033
- {
1034
- name: 'EOS EVM',
1035
- chainId: 17777,
1036
- url: 'https://explorer.evm.eosnetwork.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1037
- },
1038
- {
1039
- name: 'Crossbell',
1040
- chainId: 3737,
1041
- url: 'https://scan.crossbell.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1042
- },
1043
- {
1044
- name: 'Dogechain',
1045
- chainId: 2000,
1046
- url: 'https://explorer.dogechain.dog/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1047
- },
1048
- {
1049
- name: 'MEVerse Chain Testnet',
1050
- chainId: 4759,
1051
- url: 'https://testnet.meversescan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1052
- },
1053
- {
1054
- name: 'MEVerse Chain Mainnet',
1055
- chainId: 7518,
1056
- url: 'https://meversescan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1057
- },
1058
- {
1059
- name: 'SKALE Calypso Testnet',
1060
- chainId: 974399131,
1061
- url: 'https://giant-half-dual-testnet.explorer.testnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1062
- },
1063
- {
1064
- name: 'SKALE Europa Testnet',
1065
- chainId: 1444673419,
1066
- url: 'https://juicy-low-small-testnet.explorer.testnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1067
- },
1068
- {
1069
- name: 'SKALE Nebula Testnet',
1070
- chainId: 37084624,
1071
- url: 'https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1072
- },
1073
- {
1074
- name: 'SKALE Titan Testnet',
1075
- chainId: 1020352220,
1076
- url: 'https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1077
- },
1078
- {
1079
- name: 'SKALE Calypso Hub',
1080
- chainId: 1564830818,
1081
- url: 'https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1082
- },
1083
- {
1084
- name: 'SKALE Europa Liquidity Hub',
1085
- chainId: 2046399126,
1086
- url: 'https://elated-tan-skat.explorer.mainnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1087
- },
1088
- {
1089
- name: 'SKALE Nebula Gaming Hub',
1090
- chainId: 1482601649,
1091
- url: 'https://green-giddy-denebola.explorer.mainnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1092
- },
1093
- {
1094
- name: 'SKALE Titan AI Hub',
1095
- chainId: 1350216234,
1096
- url: 'https://parallel-stormy-spica.explorer.mainnet.skalenodes.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1097
- },
1098
- {
1099
- name: 'Ronin Saigon Testnet',
1100
- chainId: 2021,
1101
- url: 'https://saigon-app.roninchain.com/address/ronin:ca11bde05977b3631167028862be2a173976ca11?t=contract'
1102
- },
1103
- {
1104
- name: 'Ronin Mainnet',
1105
- chainId: 2020,
1106
- url: 'https://app.roninchain.com/address/ronin:ca11bde05977b3631167028862be2a173976ca11'
1107
- },
1108
- {
1109
- name: 'Qitmeer Testnet',
1110
- chainId: 8131,
1111
- url: 'https://testnet-qng.qitmeer.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1112
- },
1113
- {
1114
- name: 'Qitmeer QNG Mainnet',
1115
- chainId: 813,
1116
- url: 'https://qng.meerscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1117
- },
1118
- {
1119
- name: 'Q Testnet',
1120
- chainId: 35443,
1121
- url: 'https://explorer.qtestnet.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1122
- },
1123
- {
1124
- name: 'Q Devnet',
1125
- chainId: 35442,
1126
- url: 'https://explorer.qdevnet.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1127
- },
1128
- {
1129
- name: 'Q Mainnet',
1130
- chainId: 35441,
1131
- url: 'https://explorer.q.org/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1132
- },
1133
- {
1134
- name: 'Neon Mainnet',
1135
- chainId: 245022934,
1136
- url: 'https://neonscan.org/address/0xca11bde05977b3631167028862be2a173976ca11#contract'
1137
- },
1138
- {
1139
- name: 'LUKSO Testnet',
1140
- chainId: 4201,
1141
- url: 'https://explorer.execution.testnet.lukso.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1142
- },
1143
- {
1144
- name: 'LUKSO Mainnet',
1145
- chainId: 42,
1146
- url: 'https://explorer.execution.mainnet.lukso.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1147
- },
1148
- {
1149
- name: 'Edgeware EdgeEVM',
1150
- chainId: 2021,
1151
- url: 'https://edgscan.live/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts'
1152
- },
1153
- {
1154
- name: 'Meter Testnet',
1155
- chainId: 83,
1156
- url: 'https://scan-warringstakes.meter.io/address/0xca11bde05977b3631167028862be2a173976ca11?tab=0&p=1'
1157
- },
1158
- {
1159
- name: 'Meter',
1160
- chainId: 82,
1161
- url: 'https://scan.meter.io/address/0xca11bde05977b3631167028862be2a173976ca11?tab=0&p=1'
1162
- },
1163
- {
1164
- name: 'Sepolia PGN (Public Goods Network) Testnet',
1165
- chainId: 58008,
1166
- url: 'https://explorer.sepolia.publicgoods.network/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1167
- },
1168
- {
1169
- name: 'PGN (Public Goods Network)',
1170
- chainId: 424,
1171
- url: 'https://explorer.publicgoods.network/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1172
- },
1173
- {
1174
- name: 'ShimmerEVM',
1175
- chainId: 148,
1176
- url: 'https://explorer.evm.shimmer.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1177
- },
1178
- {
1179
- name: 'Highbury EVM',
1180
- chainId: 710,
1181
- url: 'https://explorer.furya.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1182
- },
1183
- {
1184
- name: 'Arthera Testnet',
1185
- chainId: 10243,
1186
- url: 'https://explorer-test.arthera.net/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1187
- },
1188
- {
1189
- name: 'Arthera Mainnet',
1190
- chainId: 10242,
1191
- url: 'https://explorer.arthera.net/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1192
- },
1193
- {
1194
- name: 'Manta Pacific Mainnet',
1195
- chainId: 169,
1196
- url: 'https://pacific-explorer.manta.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1197
- },
1198
- {
1199
- name: 'Jolnir (Taiko Testnet)',
1200
- chainId: 167007,
1201
- url: 'https://explorer.jolnir.taiko.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1202
- },
1203
- {
1204
- name: 'Katla (Taiko A6 Testnet)',
1205
- chainId: 167008,
1206
- url: 'https://explorer.katla.taiko.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1207
- },
1208
- {
1209
- name: 'Filecoin Mainnet',
1210
- chainId: 314,
1211
- url: 'https://filfox.info/en/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1212
- },
1213
- {
1214
- name: 'Filecoin Calibration Testnet',
1215
- chainId: 314159,
1216
- url: 'https://calibration.filscan.io/en/tx/0xdbfa261cd7d17bb40479a0493ad6c0fee435859e37aae73aa7e803f3122cc465/'
1217
- },
1218
- {
1219
- name: 'Fusion',
1220
- chainId: 32659,
1221
- url: 'https://fsnscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#contract'
1222
- },
1223
- {
1224
- name: 'Fusion Testnet',
1225
- chainId: 46688,
1226
- url: 'https://testnet.fsnscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#contract'
1227
- },
1228
- {
1229
- name: 'Xai Testnet',
1230
- chainId: 47279324479,
1231
- url: 'https://testnet-explorer.xai-chain.net/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1232
- },
1233
- {
1234
- name: 'JFIN Chain',
1235
- chainId: 3501,
1236
- url: 'https://jfinscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1237
- },
1238
- {
1239
- name: 'JFIN Chain Testnet',
1240
- chainId: 3502,
1241
- url: 'https://testnet.jfinscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1242
- },
1243
- {
1244
- name: 'Chiliz Chain',
1245
- chainId: 88888,
1246
- url: 'https://scan.chiliz.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1247
- },
1248
- {
1249
- name: 'Chiliz Spicy Testnet',
1250
- chainId: 88882,
1251
- url: 'https://testnet.chiliscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11/contract/88882/code'
1252
- },
1253
- {
1254
- name: 'CORE',
1255
- chainId: 1116,
1256
- url: 'https://scan.coredao.org/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
1257
- },
1258
- {
1259
- name: 'Core Testnet',
1260
- chainId: 1115,
1261
- url: 'https://scan.test.btcs.network/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1262
- },
1263
- {
1264
- name: 'Ethereum Classic',
1265
- chainId: 61,
1266
- url: 'https://etc.blockscout.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1267
- },
1268
- {
1269
- name: 'Frame Testnet',
1270
- chainId: 68840142,
1271
- url: 'https://explorer.testnet.frame.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1272
- },
1273
- {
1274
- name: 'Etherlink Mainnet',
1275
- chainId: 42793,
1276
- url: 'https://explorer.etherlink.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1277
- },
1278
- {
1279
- name: 'Etherlink Testnet',
1280
- chainId: 128123,
1281
- url: 'https://testnet-explorer.etherlink.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1282
- },
1283
- {
1284
- name: 'ZetaChain Athens 3 Testnet',
1285
- chainId: 7001,
1286
- url: 'https://explorer.zetachain.com/address/0xca11bde05977b3631167028862be2a173976ca11'
1287
- },
1288
- {
1289
- name: 'ZetaChain ',
1290
- chainId: 7000,
1291
- url: 'https://explorer.zetachain.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1292
- },
1293
- {
1294
- name: 'X1 Testnet',
1295
- chainId: 195,
1296
- url: 'https://www.oklink.com/x1-test/address/0xca11bde05977b3631167028862be2a173976ca11/contract'
1297
- },
1298
- {
1299
- name: 'Lumiterra Layer3',
1300
- chainId: 94168,
1301
- url: 'https://scan.layerlumi.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1302
- },
1303
- {
1304
- name: 'BitTorrent Chain Mainnet',
1305
- chainId: 199,
1306
- url: 'https://bttcscan.com/address/0xca11bde05977b3631167028862be2a173976ca11#code'
1307
- },
1308
- {
1309
- name: 'BTT Chain Testnet',
1310
- chainId: 1029,
1311
- url: 'https://testnet.bttcscan.com/address/0xca11bde05977b3631167028862be2a173976ca11'
1312
- },
1313
- {
1314
- name: 'Callisto Mainnet',
1315
- chainId: 820,
1316
- url: 'https://explorer.callisto.network/address/0xcA11bde05977b3631167028862bE2a173976CA11/transactions'
1317
- },
1318
- {
1319
- name: 'Areon Network Testnet',
1320
- chainId: 462,
1321
- url: 'https://areonscan.com/contracts/0xca11bde05977b3631167028862be2a173976ca11?page=0'
1322
- },
1323
- {
1324
- name: 'Areon Network Mainnet',
1325
- chainId: 463,
1326
- url: 'https://areonscan.com/contracts/0xca11bde05977b3631167028862be2a173976ca11'
1327
- },
1328
- {
1329
- name: 'zkFair Mainnet',
1330
- chainId: 42766,
1331
- url: 'https://scan.zkfair.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1332
- },
1333
- {
1334
- name: 'Mode Mainnet',
1335
- chainId: 34443,
1336
- url: 'https://explorer.mode.network/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1337
- },
1338
- {
1339
- name: 'Blast Sepolia',
1340
- chainId: 168587773,
1341
- url: 'https://testnet.blastscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11/contract/168587773/code'
1342
- },
1343
- {
1344
- name: 'Blast',
1345
- chainId: 81457,
1346
- url: 'https://blastscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
1347
- },
1348
- {
1349
- name: 'Xai',
1350
- chainId: 660279,
1351
- url: 'https://explorer.xai-chain.net/address/0xcA11bde05977b3631167028862bE2a173976CA11/contracts#address-tabs'
1352
- },
1353
- {
1354
- name: 'DOS Chain',
1355
- chainId: 7979,
1356
- url: 'https://doscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1357
- },
1358
- {
1359
- name: 'DOS Chain Testnet',
1360
- chainId: 3939,
1361
- url: 'https://test.doscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1362
- },
1363
- {
1364
- name: 'Tron',
1365
- chainId: 728126428,
1366
- url: 'https://tronscan.org/#/contract/TEazPvZwDjDtFeJupyo7QunvnrnUjPH8ED/code',
1367
- address: 'TEazPvZwDjDtFeJupyo7QunvnrnUjPH8ED'
1368
- },
1369
- {
1370
- name: 'zkSync Era',
1371
- chainId: 324,
1372
- url: 'https://explorer.zksync.io/address/0xF9cda624FBC7e059355ce98a31693d299FACd963#contract',
1373
- address: '0xF9cda624FBC7e059355ce98a31693d299FACd963'
1374
- },
1375
- {
1376
- name: 'zkSync Era Goerli Testnet',
1377
- chainId: 280,
1378
- url: 'https://goerli.explorer.zksync.io/address/0xF9cda624FBC7e059355ce98a31693d299FACd963#contract',
1379
- address: '0xF9cda624FBC7e059355ce98a31693d299FACd963'
1380
- },
1381
- {
1382
- name: 'zkSync Era Sepolia Testnet',
1383
- chainId: 300,
1384
- url: 'https://sepolia.explorer.zksync.io/address/0xF9cda624FBC7e059355ce98a31693d299FACd963#contract',
1385
- address: '0xF9cda624FBC7e059355ce98a31693d299FACd963'
1386
- },
1387
- {
1388
- name: 'PlayFi Albireo Testnet',
1389
- chainId: 1612127,
1390
- url: 'https://albireo-explorer.playfi.ai/address/0xF9cda624FBC7e059355ce98a31693d299FACd963#contract',
1391
- address: '0xF9cda624FBC7e059355ce98a31693d299FACd963'
1392
- },
1393
- {
1394
- name: 'Fraxtal Mainnet',
1395
- chainId: 252,
1396
- url: 'https://fraxscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
1397
- },
1398
- {
1399
- name: 'Fraxtal Holesky Testnet',
1400
- chainId: 2522,
1401
- url: 'https://holesky.fraxscan.com/address/0xcA11bde05977b3631167028862bE2a173976CA11#code'
1402
- },
1403
- {
1404
- name: 'Omax Mainnet',
1405
- chainId: 311,
1406
- url: 'https://omaxray.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1407
- },
1408
- {
1409
- name: 'Syndicate Frame Chain',
1410
- chainId: 5101,
1411
- url: 'https://explorer-frame.syndicate.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1412
- },
1413
- {
1414
- name: 'Dela Sepolia',
1415
- chainId: 9393,
1416
- url: 'https://sepolia-delascan.deperp.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1417
- },
1418
- {
1419
- name: 'NeoX Testnet',
1420
- chainId: 12227330,
1421
- url: 'https://xt2scan.ngd.network/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1422
- },
1423
- {
1424
- name: 'Sanko Testnet',
1425
- chainId: 1992,
1426
- url: 'https://testnet.sankoscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1427
- },
1428
- {
1429
- name: 'Berachain Testnet (Artio)',
1430
- chainId: 80085,
1431
- url: 'https://artio.beratrail.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1432
- },
1433
- {
1434
- name: 'Shibarium',
1435
- chainId: 109,
1436
- url: 'https://www.shibariumscan.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1437
- },
1438
- {
1439
- name: 'Immutable zkEVM Mainnet',
1440
- chainId: 13371,
1441
- url: 'https://explorer.immutable.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1442
- },
1443
- {
1444
- name: 'Immutable zkEVM Testnet',
1445
- chainId: 13473,
1446
- url: 'https://explorer.testnet.immutable.com/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1447
- },
1448
- {
1449
- name: 'RSS3 VSL Mainnet',
1450
- chainId: 12553,
1451
- url: 'https://scan.rss3.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1452
- },
1453
- {
1454
- name: 'RSS3 VSL Sepolia Testnet',
1455
- chainId: 2331,
1456
- url: 'https://scan.testnet.rss3.io/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1457
- },
1458
- {
1459
- name: 'Morph Sepolia Testnet',
1460
- chainId: 2710,
1461
- url: 'https://explorer-testnet.morphl2.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1462
- },
1463
- {
1464
- name: 'JIBCHAIN L1',
1465
- chainId: 8899,
1466
- url: 'https://exp-l1.jibchain.net/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1467
- },
1468
- {
1469
- name: 'Haqq Mainnet',
1470
- chainId: 11235,
1471
- url: 'https://explorer.haqq.network/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1472
- },
1473
- {
1474
- name: 'Zircuit Sepolia Testnet',
1475
- chainId: 48899,
1476
- url: 'https://explorer.zircuit.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?activeTab=3'
1477
- },
1478
- {
1479
- name: 're.al',
1480
- chainId: 111188,
1481
- url: 'https://explorer.re.al/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1482
- },
1483
- {
1484
- name: 'IOTA EVM',
1485
- chainId: 8822,
1486
- url: 'https://iota-evm.blockscout.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1487
- },
1488
- {
1489
- name: 'Planq',
1490
- chainId: 7070,
1491
- url: 'https://evm.planq.network/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1492
- },
1493
- {
1494
- name: 'Cyber Testnet',
1495
- chainId: 111557560,
1496
- url: 'https://testnet.cyberscan.co/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1497
- },
1498
- {
1499
- name: 'Unit Zero Stagenet',
1500
- chainId: 88819,
1501
- url: 'https://explorer-stagenet.unit0.dev/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1502
- },
1503
- {
1504
- name: 'Unit Zero Testnet',
1505
- chainId: 88817,
1506
- url: 'https://explorer-testnet.unit0.dev/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1507
- },
1508
- {
1509
- name: 'Sei EVM Devnet',
1510
- chainId: 713715,
1511
- url: 'https://seitrace.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1512
- },
1513
- {
1514
- name: 'Sei EVM Mainnet',
1515
- chainId: 1329,
1516
- url: 'https://seitrace.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?chain=pacific-1&tab=contract'
1517
- },
1518
- {
1519
- name: 'Hekla (Taiko A7 Testnet)',
1520
- chainId: 167009,
1521
- url: 'https://explorer.hekla.taiko.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1522
- },
1523
- {
1524
- name: 'Taiko Mainnet',
1525
- chainId: 167000,
1526
- url: 'https://taikoscan.io/address/0xca11bde05977b3631167028862be2a173976ca11#code'
1527
- },
1528
- {
1529
- name: 'Cyber Mainnet',
1530
- chainId: 7560,
1531
- url: 'https://cyberscan.co/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1532
- },
1533
- {
1534
- name: 'DreyerX Mainnet',
1535
- chainId: 23451,
1536
- url: 'https://scan.dreyerx.com/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1537
- },
1538
- {
1539
- name: 'Sahara Testnet',
1540
- chainId: 313313,
1541
- url: 'https://explorer.saharaa.info/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1542
- },
1543
- {
1544
- name: 'BOX Chain',
1545
- chainId: 42299,
1546
- url: 'https://explorerl2new-boxchain-t4zoh9y5dr.t.conduit.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1547
- },
1548
- {
1549
- name: 'OX Chain',
1550
- chainId: 6699,
1551
- url: 'https://explorer-ox-chain-2s86s7wp21.t.conduit.xyz/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1552
- },
1553
- {
1554
- name: 'Conflux Espace',
1555
- chainId: 1030,
1556
- url: 'https://evm.confluxscan.net/address/0xca11bde05977b3631167028862be2a173976ca11?tab=contract-viewer'
1557
- },
1558
- {
1559
- name: 'BEVM Testnet',
1560
- chainId: 11503,
1561
- url: 'https://scan-testnet.bevm.io/address/0xcA11bde05977b3631167028862bE2a173976CA11?tab=contract'
1562
- },
1563
- {
1564
- name: 'Aura Mainnet',
1565
- chainId: 6322,
1566
- url: 'https://aurascan.io/evm-contracts/0xca11bde05977b3631167028862be2a173976ca11'
1567
- },
1568
- {
1569
- name: 'Superposition Testnet',
1570
- chainId: 98985,
1571
- url: 'https://testnet-explorer.superposition.so/address/0xcA11bde05977b3631167028862bE2a173976CA11'
1572
- }
1573
- ]
1574
-
1575
- const chainToDeploymentMap = Object.fromEntries(
1576
- DEPLOYMENTS.map((deployment) => {
1577
- const p = deployment.url.indexOf('0x')
1578
- const address = p > -1 ? deployment.url.slice(p, p + 42) : '0x' + deployment.url.slice(-40)
1579
- return [deployment.chainId.toString() as EthChainId, address]
1580
- })
1581
- )
1582
-
1583
- export interface Multicall3Call {
1584
- target: string
1585
- callData: string
1586
- }
1587
-
1588
- export interface AggregateResult {
1589
- blockNumber: bigint
1590
- returnData: string[]
1591
- }
1592
-
1593
- const iface = new Interface(ABI)
1594
-
1595
- export function encodeMulticallData(calls: Array<Multicall3Call>) {
1596
- return iface.encodeFunctionData('aggregate', [calls])
1597
- }
1598
-
1599
- export function decodeMulticallResult(data: BytesLike): AggregateResult {
1600
- return iface.decodeFunctionResult('aggregate', data).toObject() as AggregateResult
1601
- }
1602
-
1603
- export function getMulticallAddress(chainId: EthChainId): string | undefined {
1604
- return chainToDeploymentMap[chainId]
1605
- }