-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathchains.json
More file actions
12220 lines (12219 loc) · 377 KB
/
chains.json
File metadata and controls
12220 lines (12219 loc) · 377 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"1": {
"name": "Ethereum",
"description": "Decentralized global computing platform supporting smart contracts & P2P apps.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/ethereum.svg",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "ETH",
"website": "https://ethereum.org/",
"explorers": [
{
"url": "https://eth.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"7": {
"name": "Thai Chain",
"description": "Non-profit organization advancing blockchain adoption in Thailand through infrastructure services, smart contract audits, and public education",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/669a6c677de63eb6bbeadc2d_ThaiChain.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "TCH",
"website": "https://www.thaichain.io/",
"explorers": [
{
"url": "https://thaichain.org",
"hostedBy": "self"
}
]
},
"10": {
"name": "OP Mainnet",
"description": "Optimism is building an equitable Internet with their Superchain infra - this is the flagship Optimism Mainnet instance.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/op-mainnet.svg",
"ecosystem": ["Optimism", "Superchain"],
"isTestnet": false,
"layer": 2,
"settlementLayerChainId": "1",
"rollupType": "optimistic",
"native_currency": "ETH",
"website": "https://www.optimism.io/",
"explorers": [
{
"url": "https://explorer.optimism.io/",
"hostedBy": "blockscout"
}
]
},
"14": {
"name": "Flare Networks",
"description": "Networks for the secure and Universal Flare EVM chain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65afe53ba7de9f3fa8b052a2_flaresongbird.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "FLR",
"website": "https://flare.network/",
"explorers": [
{
"url": "https://flare-explorer.flare.network/",
"hostedBy": "self"
}
]
},
"15": {
"name": "Flare Network Coston",
"description": "Blockchain for data, EVM smart contract platform designed to expand the utility of blockchain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b704f27176823b36e394_flare-blue.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "CFLR",
"website": "https://flare.network/",
"explorers": [
{
"url": "https://coston-explorer.flare.network/",
"hostedBy": "self"
}
]
},
"19": {
"name": "Flare Network Songbird Canary",
"description": "Blockchain for data, EVM smart contract platform designed to expand the utility of blockchain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b70498bb4222935cfacc_Flare-black.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "SGB",
"website": "https://flare.network/",
"explorers": [
{
"url": "https://songbird-explorer.flare.network/",
"hostedBy": "self"
}
]
},
"23": {
"name": "Kardiachain",
"description": "The world's first blockchain built-in solution for a phygital (physical-digital) future",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65afe53ccb489698989c05cf_kardiachain.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://kardiachain.io/",
"explorers": [
{
"url": "https://explorer.kardiachain.io/",
"hostedBy": "self"
}
]
},
"24": {
"name": "Cronos",
"description": "Ethereum-compatible blockchain network built on Cosmos SDK technology.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65afe542b7bec826fe873f1c_%25D1%2581ronos.png",
"ecosystem": "Cosmos",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://cronos.org/",
"explorers": [
{
"url": "https://cronos.org/explorer/",
"hostedBy": "self"
}
]
},
"27": {
"name": "CaoTianChain",
"description": "Blockchain explorer and analysis platform for the CaoTianChain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b7031d12351a45463158_ctblock.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "草田分",
"website": "https://ctblock.cn",
"explorers": [
{
"url": "https://browser.ctblock.cn/",
"hostedBy": "self"
}
]
},
"30": {
"name": "Rootstock",
"description": "Enables smart-contracts, near-instant payments and scalability to the Bitcoin ecosystem through merged mining",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/rootstock.svg",
"ecosystem": "Bitcoin/BCH",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "RBTC",
"website": "https://rootstock.io/",
"explorers": [
{
"url": "https://rootstock.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"31": {
"name": "Rootstock Testnet",
"description": "Enables smart-contracts, near-instant payments and scalability to the Bitcoin ecosystem through merged mining",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/rootstock.svg",
"ecosystem": "Bitcoin/BCH",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "tRBTC",
"website": "https://rootstock.io/",
"explorers": [
{
"url": "https://rootstock-testnet.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"38": {
"name": "U2U Network",
"description": "L1 network focused on decentralized physical infrastructure network and RWA builders.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/668b162c330799edca91a1fb_u2uscan.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://u2u.xyz/",
"explorers": [
{
"url": "https://u2uscan.xyz",
"hostedBy": "self"
}
]
},
"40": {
"name": "Telos EVM",
"description": "Telos Kiwi - A Block Producer on Telos with a focus on education & community.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/telos-evm.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "TLOS",
"website": "https://bp.kiwi/",
"explorers": [
{
"url": "https://telostx.com/",
"hostedBy": "self"
}
]
},
"42": {
"name": "Lukso",
"description": "EVM blockchain based on Casper PoS geared towards the new creative economy.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65afe53d4c9114b41a31b397_lukso.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "LYX",
"website": "https://lukso.network/",
"explorers": [
{
"url": "https://explorer.execution.mainnet.lukso.network/",
"hostedBy": "self"
}
]
},
"44": {
"name": "Crab",
"description": "L1 EVM chain governed by Ring DAO connecting to Polkadot. Parachain of Kusama, now serves as Darwinia's primary test network.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/crab.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "CRAB",
"website": "https://darwinia.network/",
"explorers": [
{
"url": "https://crab-scan.darwinia.network/",
"hostedBy": "self"
}
]
},
"46": {
"name": "Darwinia",
"description": "L1 EVM chain governed by Ring DAO based on Substrate framework with cross-chain components. Darwinia is now a parachain of Polkadot.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/darwinia.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "RING",
"website": "https://darwinia.network/",
"explorers": [
{
"url": "https://explorer.darwinia.network/",
"hostedBy": "self"
}
]
},
"54": {
"name": "ZYX Network",
"description": "Blockchain ecosystem for DeFi, NFT, P2E, games, metaverse.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/668b162d267265eb61dc772e_zyxscan.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://zyx.network/",
"explorers": [
{
"url": "https://zyxscan.com/",
"hostedBy": "self"
}
]
},
"57": {
"name": "Syscoin",
"description": "Bitcoin Layer 0 with Data Availability and 60% of Bitcoin hash-rate via Merged mining",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/66328ec8726f60345e5930a3_syscoin.png",
"ecosystem": "Bitcoin/BCH",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "SYS",
"website": "https://www.syscoin.org",
"explorers": [
{
"url": "https://explorer.syscoin.org",
"hostedBy": "self"
}
]
},
"61": {
"name": "Ethereum Classic",
"description": "Longest running smart contract platform running the original Ethereum protocol.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/ethereum-classic.svg",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "ETC",
"website": "https://ethereumclassic.org/",
"explorers": [
{
"url": "https://etc.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"63": {
"name": "Ethereum Classic Mordor",
"description": "Longest running smart contract platform running the original Ethereum protocol.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/ethereum-classic.svg",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "mETC",
"website": "https://ethereumclassic.org/",
"explorers": [
{
"url": "https://etc-mordor.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"73": {
"name": "IDChain",
"description": "Golang fork of the Ethereum protocol that burns gas fees instead of awarding block sealers.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b707a061247a45902612_idchain.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://idchain.one/begin/",
"explorers": [
{
"url": "https://explorer.idchain.one/",
"hostedBy": "self"
}
]
},
"81": {
"name": "Astar Shibuya",
"description": "Polkadot parachain built on Substrate supporting scalable smart-contract execution.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/astar.svg",
"ecosystem": "Polkadot",
"isTestnet": true,
"layer": 2,
"rollupType": null,
"native_currency": "SBY",
"website": "https://astar.network/",
"explorers": [
{
"url": "https://shibuya.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"88": {
"name": "Viction Network",
"description": "Scalable blockchain powered via Proof-of-Stake Voting (PoSV) consensus.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/viction.svg",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "VIC",
"website": "https://viction.xyz/",
"explorers": [
{
"url": "https://viction.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"94": {
"name": "SwissDLT",
"description": "Swiss Infrastructure with nodes under Swiss law for SMEs.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/668b162bb0b6e9af18fa42aa_swissdlt.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://swissdlt.ch",
"explorers": [
{
"url": "https://explorer.swissdlt.ch",
"hostedBy": "self"
}
]
},
"96": {
"name": "Bitkub",
"description": "Proof of Staked Authority (PoSA) chain serving the Thai community.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/665637dedb77c3c26b99e9b4_bitcub.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "KUB",
"website": "https://www.bitkubchain.com/",
"explorers": [
{
"url": "https://www.kubscan.com/",
"hostedBy": "self"
}
]
},
"99": {
"name": "GlitchD",
"description": "GlitchD is a zero knowledge rollup network built on Ethereum.",
"logo": "https://cdn.prod.website-files.com/644a5b7efad46e3cd70deafb/670e62c0357055007216ad63_GlitchD.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": "zk",
"native_currency": null,
"website": "https://glitchd.network/",
"explorers": [
{
"url": "https://explorer.glitchd.network/",
"hostedBy": "self"
}
]
},
"100": {
"name": "Gnosis",
"description": "Gnosis Chain is a feature-rich, user-centered blockchain ecosystem.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/gnosis.svg",
"ecosystem": "Gnosis",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "XDAI",
"website": "https://docs.gnosischain.com/",
"explorers": [
{
"url": "https://gnosis.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"102": {
"name": "Worldland",
"description": "Platform for users to establish a global free trade digital land.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/668b162d510bdea9ea38047e_worldland.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://worldland.foundation",
"explorers": [
{
"url": "https://scan.worldland.foundation",
"hostedBy": "self"
}
]
},
"105": {
"name": "Stratis",
"description": "StratisEVM brings the power of Ethereum with lower fees & faster transactions.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/stratis.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "STRAX",
"website": "https://www.stratisplatform.com/",
"explorers": [
{
"url": "https://explorer.stratisevm.com/",
"hostedBy": "self"
}
]
},
"109": {
"name": "Shibarium",
"description": "Shiba Inu's L2 blockchain featuring low cost, fast, and powerful technology.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/shibarium.svg",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 2,
"settlementLayerChainId": "1",
"rollupType": "optimistic",
"native_currency": "BONE",
"website": "https://docs.shibariumtech.com/shibarium/",
"explorers": [
{
"url": "https://www.shibariumscan.io/",
"hostedBy": "self"
}
]
},
"111": {
"name": "BOB Testnet",
"description": "Hybrid L2 that combines the security of Bitcoin with the versatility of Ethereum.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/669a6c6b13d9cabc22dddfd3_BOB.png",
"ecosystem": "Bitcoin",
"isTestnet": true,
"layer": 2,
"rollupType": null,
"native_currency": null,
"website": "https://www.gobob.xyz/",
"explorers": [
{
"url": "https://bob-sepolia.explorer.gobob.xyz/",
"hostedBy": "self"
}
]
},
"113": {
"name": "Flare Network Coston2",
"description": "Blockchain for data, EVM smart contract platform designed to expand the utility of blockchain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b704f27176823b36e394_flare-blue.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "C2FLR",
"website": "https://flare.network/",
"explorers": [
{
"url": "https://coston2-explorer.flare.network/",
"hostedBy": "self"
}
]
},
"114": {
"name": "Flare Network Coston2",
"description": "Blockchain for data, EVM smart contract platform designed to expand the utility of blockchain.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b704f27176823b36e394_flare-blue.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "C2FLR",
"website": "https://flare.network/",
"explorers": [
{
"url": "https://coston2-explorer.flare.network/",
"hostedBy": "self"
}
]
},
"118": {
"name": "Nuls",
"description": "NULS is a public, open-source, community-driven blockchain project.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65f22016b81e3767be2825da_nuls.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://nuls.io/",
"explorers": [
{
"url": "evmscan.nuls.io",
"hostedBy": "self"
}
]
},
"122": {
"name": "Fuse",
"description": "Decentralized payments-focused EVM platform.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/fuse.svg",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "FUSE",
"website": "https://www.fuse.io/",
"explorers": [
{
"url": "https://explorer.fuse.io/",
"hostedBy": "blockscout"
}
]
},
"123": {
"name": "Fuse Sparknet",
"description": "Fuse testnet for the decentralized payments-focused EVM platform.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/fuse.svg",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "Spark",
"website": "https://www.fuse.io/",
"explorers": [
{
"url": "https://explorer.fusespark.io/",
"hostedBy": "blockscout"
}
]
},
"130": {
"name": "Unichain",
"description": "Designed for DeFi. Powered by Uniswap. Optimized to be the home for liquidity across chains.",
"logo": "https://cdn.prod.website-files.com/644a5b7efad46e3cd70deafb/672e20307ba9b03f0026ddee_Unichain.png",
"ecosystem": "Optimism",
"isTestnet": false,
"layer": 2,
"settlementLayerChainId": "1",
"rollupType": "optimistic",
"native_currency": "ETH",
"website": "https://www.unichain.org/",
"explorers": [
{
"url": "https://unichain.blockscout.com",
"hostedBy": "blockscout"
}
]
},
"132": {
"name": "iExec",
"description": "Decentralized protocol to help developers build dApps, own, and monetize data and digital assets.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6675b7071c856ee00e79d1c6_iex.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "xRLC",
"website": "https://iex.ec/",
"explorers": [
{
"url": "https://blockscout.bellecour.iex.ec/",
"hostedBy": "self"
}
]
},
"133": {
"name": "HashKey Chain Testnet",
"description": "HashKey Chain adopts ZK-proof technology to provide users with low-cost, efficient, and developer-friendly onchain solutions.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/hashkey.svg",
"ecosystem": "Optimism",
"isTestnet": true,
"layer": 2,
"rollupType": "optimistic",
"native_currency": "HSK",
"website": "https://global.hashkey.com/en-US/",
"explorers": [
{
"url": "https://testnet-explorer.hsk.xyz/",
"hostedBy": "altlayer-raas"
}
]
},
"137": {
"name": "Polygon PoS",
"description": "EVM-compatible, proof-of-stake sidechain for Ethereum, with high throughput and low costs.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/polygon-pos.svg",
"ecosystem": "Polygon",
"isTestnet": false,
"layer": 2,
"rollupType": null,
"native_currency": "POL",
"website": "https://polygon.technology/polygon-pos",
"explorers": [
{
"url": "https://polygon.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"140": {
"name": "Data Lake Chain",
"description": "Data Lake is an ecosystem focused on helping patients access better treatments more effectively.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/data-lake.png",
"ecosystem": "Arbitrum Orbit",
"isTestnet": false,
"layer": 2,
"rollupType": "arbitrum",
"native_currency": "LAKE",
"website": "https://data-lake.co/",
"explorers": [
{
"url": "https://explorer.data-lake.co/",
"hostedBy": "self"
}
]
},
"148": {
"name": "Shimmer EVM Mainnet",
"description": "A high-performance, feeless, and parallelized Directed Acyclic Graph (DAG) ledger.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/shimmer.svg",
"ecosystem": "IOTA",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "SMR",
"website": "https://shimmer.network/",
"explorers": [
{
"url": "https://explorer.evm.shimmer.network/",
"hostedBy": "blockscout"
}
]
},
"151": {
"name": "Enzoscan chain",
"description": "ENZO NETWORK is an Decentralized Smart Contract based business network. No one can change or edit any data or transactions.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/enzo.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "ENZ",
"website": "https://enzonetwork.com/",
"explorers": [
{
"url": "https://enzoscan.com/",
"hostedBy": "self"
}
]
},
"157": {
"name": "Shibarium Puppynet",
"description": "Shiba Inu's L2 blockchain featuring low cost, fast, and powerful technology.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/shibarium.svg",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 2,
"settlementLayerChainId": "11155111",
"rollupType": "optimistic",
"native_currency": "BONE",
"website": "https://docs.shibariumtech.com/shibarium/",
"explorers": [
{
"url": "https://puppyscan.shib.io/",
"hostedBy": "self"
}
]
},
"169": {
"name": "Manta Pacific",
"description": "Modular L2 ecosystem for EVM-native ZK applications and dApps that want to deliver the lowest cost and best experience for users.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65bd5357954c62a6f3942897_manta.network.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 2,
"rollupType": "optimistic",
"native_currency": "ETH",
"website": "https://manta.network/",
"explorers": [
{
"url": "https://pacific-explorer.manta.network/",
"hostedBy": "caldera"
}
]
},
"170": {
"name": "AME Chain",
"description": "Quantum secured, decentralized, EVM compatible digital asset ledger",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6662359b53adafc68d0fa08e_amescan.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://amechain.io/",
"explorers": [
{
"url": "amescan.io",
"hostedBy": "self"
}
]
},
"177": {
"name": "HashKey",
"description": "HashKey Chain adopts ZK-proof technology to provide users with low-cost, efficient, and developer-friendly onchain solutions.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/hashkey.svg",
"ecosystem": "Optimism",
"isTestnet": false,
"layer": 2,
"settlementLayerChainId": "1",
"rollupType": "optimistic",
"native_currency": "HSK",
"website": "https://hsk.xyz/",
"explorers": [
{
"url": "https://hashkey.blockscout.com/",
"hostedBy": "blockscout"
}
]
},
"178": {
"name": "Abey Testnet",
"description": "Inter-app blockchain, built for DeFi, GameFi, Metaverse projects and more.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/abey.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "ABEY",
"website": "https://abey.com/",
"explorers": [
{
"url": "https://testnet.abeyscan.com/",
"hostedBy": "self"
}
]
},
"179": {
"name": "Abey Mainnet",
"description": "Inter-app blockchain, built for DeFi, GameFi, Metaverse projects and more.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/abey.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "ABEY",
"website": "https://abey.com/",
"explorers": [
{
"url": "https://abeyscan.com/",
"hostedBy": "self"
}
]
},
"185": {
"name": "Mint Chain",
"description": "L2 blockchain built on OP Stack for the NFT ecosystem.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/669a6c6b4292ddefeda50298_Mint.png",
"ecosystem": ["Optimism", "Superchain"],
"isTestnet": false,
"layer": 2,
"rollupType": null,
"native_currency": "ETH",
"website": "https://www.mintchain.io/",
"explorers": [
{
"url": "https://explorer.mintchain.io/",
"hostedBy": "self"
}
]
},
"205": {
"name": "Stratis Auroria Testnet",
"description": "StratisEVM brings the power of Ethereum with lower fees & faster transactions.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/stratis.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"native_currency": "STRAX",
"website": "https://www.stratisplatform.com/",
"explorers": [
{
"url": "https://auroria.explorer.stratisevm.com",
"hostedBy": "self"
}
]
},
"213": {
"name": "Energy Web",
"description": "Building digital operating systems for energy grids.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/65afe539abf3b842f5da7e49_energyweb.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": null,
"website": "https://www.energyweb.org/",
"explorers": [
{
"url": "https://explorer.energyweb.org/",
"hostedBy": "self"
}
]
},
"215": {
"name": "IDN Network",
"description": "Scalable blockchain powered via Proof-of-Stake Voting (PoSV) consensus.",
"logo": "https://idnexplorer.s3.ap-east-1.amazonaws.com/network_icon-logo2.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "IDN",
"website": "https://idn.world/",
"explorers": [
{
"url": "https://scan.idn-network.com/",
"hostedBy": "self"
}
]
},
"216": {
"name": "HappyChain Testnet",
"description": "A self-developed high TPS game public chain project based on Ethereum.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/happychain.png",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 2,
"rollupType": "optimistic",
"native_currency": "HAPPY",
"website": "https://linktr.ee/happychaindevs",
"explorers": [
{
"url": "https://explorer.testnet.happy.tech/",
"hostedBy": "caldera"
}
]
},
"225": {
"name": "Swan Chain",
"description": "OP Stack L2 offering comprehensive solutions for storage, computing, bandwidth, and payments",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/660dccad4fc0b068654ed135_swanchain.png",
"ecosystem": ["Optimism", "Superchain"],
"isTestnet": false,
"layer": 2,
"rollupType": null,
"native_currency": "ETH",
"website": "https://swanchain.io/",
"explorers": [
{
"url": "https://mainnet-explorer.swanchain.io/",
"hostedBy": "self"
}
]
},
"227": {
"name": "Prom Mainnet",
"description": "Modular ZkEVM L2 enabling interoperability across various chains, both EVM and non-EVM compatible networks.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6696c29898ad38ca053ffc46_Prom.png",
"ecosystem": "Polygon",
"isTestnet": false,
"layer": 2,
"rollupType": "zk",
"native_currency": "PROM",
"website": "https://prom.io/",
"explorers": [
{
"url": "https://promscan.io/",
"hostedBy": "gateway"
}
]
},
"228": {
"name": "Mind Network",
"description": "A Fully Homomorphic Encryption (FHE) restaking layer for PoS and AI networks.",
"logo": "https://blockscout-icons.s3.us-east-1.amazonaws.com/mind-network.png",
"ecosystem": "Arbitrum Orbit",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "ETH",
"website": "https://www.mindnetwork.xyz/",
"explorers": [
{
"url": "https://explorer.mindnetwork.xyz/",
"hostedBy": "self"
}
]
},
"229": {
"name": "Paxeer Network",
"description": "Paxeer is a decentralized capital orchestration Layer 1 network ",
"logo": "https://paxscan.paxeer.app/assets/configs/network_logo.png",
"ecosystem": "Paxeer",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"native_currency": "PAX",
"website": "https://paxeer.app",
"explorers": [
{
"url": "https://paxscan.paxeer.app",
"hostedBy": "self"
}
]
},
"231": {
"name": "BPX Chain",
"description": "New generation EVM blockchain based on an innovative consensus algorithm, Proof of Space and Time.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/6643a5974f20ec7de1c16313_bpx.png",
"ecosystem": "Ethereum",
"isTestnet": false,
"layer": 1,
"rollupType": null,