eth-chainlist 0.0.532 → 0.0.533
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/CHANGELOG.md +8 -0
- package/data/chain.js +212 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.533 (2024-11-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.532 ([4b446f0](https://github.com/poowf/eth-chainlist/commit/4b446f0146960e830259e502d5c03bd6d1c2c0ae))
|
|
9
|
+
* update chain data ([68429e4](https://github.com/poowf/eth-chainlist/commit/68429e4895c8856499d471706cef877732aa0e02))
|
|
10
|
+
|
|
3
11
|
### 0.0.532 (2024-11-05)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -2965,6 +2965,21 @@ const chainArray = [
|
|
|
2965
2965
|
chainId: 142,
|
|
2966
2966
|
networkId: 142
|
|
2967
2967
|
},
|
|
2968
|
+
{
|
|
2969
|
+
name: 'Monad Mainnet',
|
|
2970
|
+
chain: 'MON',
|
|
2971
|
+
icon: 'monad',
|
|
2972
|
+
rpc: [],
|
|
2973
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
2974
|
+
faucets: [],
|
|
2975
|
+
nativeCurrency: { name: 'MON Token', symbol: 'MON', decimals: 18 },
|
|
2976
|
+
infoURL: 'https://monad.xyz',
|
|
2977
|
+
shortName: 'mon',
|
|
2978
|
+
chainId: 143,
|
|
2979
|
+
networkId: 143,
|
|
2980
|
+
slip44: 1,
|
|
2981
|
+
explorers: []
|
|
2982
|
+
},
|
|
2968
2983
|
{
|
|
2969
2984
|
name: 'PHI Network v2',
|
|
2970
2985
|
chain: 'PHI',
|
|
@@ -4565,7 +4580,9 @@ const chainArray = [
|
|
|
4565
4580
|
rpc: [
|
|
4566
4581
|
'https://mainnet-rpc.swanchain.org',
|
|
4567
4582
|
'https://mainnet-rpc-01.swanchain.org',
|
|
4568
|
-
'https://mainnet-rpc-02.swanchain.org'
|
|
4583
|
+
'https://mainnet-rpc-02.swanchain.org',
|
|
4584
|
+
'https://mainnet-rpc-03.swanchain.org',
|
|
4585
|
+
'https://mainnet-rpc-04.swanchain.org'
|
|
4569
4586
|
],
|
|
4570
4587
|
faucets: [],
|
|
4571
4588
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -10764,7 +10781,7 @@ const chainArray = [
|
|
|
10764
10781
|
'https://rpc-mainnet.devolvedai.com'
|
|
10765
10782
|
],
|
|
10766
10783
|
faucets: [],
|
|
10767
|
-
nativeCurrency: { name: '
|
|
10784
|
+
nativeCurrency: { name: 'Argocoin', symbol: 'AGC', decimals: 18 },
|
|
10768
10785
|
infoURL: 'https://devolvedai.com',
|
|
10769
10786
|
shortName: 'AGC',
|
|
10770
10787
|
chainId: 1299,
|
|
@@ -12217,6 +12234,37 @@ const chainArray = [
|
|
|
12217
12234
|
bridges: [ { url: 'https://bridge.gelato.network/bridge/playblock' } ]
|
|
12218
12235
|
}
|
|
12219
12236
|
},
|
|
12237
|
+
{
|
|
12238
|
+
name: 'Verify testnet',
|
|
12239
|
+
title: 'Verify Testnet',
|
|
12240
|
+
chain: 'verify-testnet',
|
|
12241
|
+
rpc: [
|
|
12242
|
+
'https://rpc.verify-testnet.gelato.digital',
|
|
12243
|
+
'wss://ws.verify-testnet.gelato.digital'
|
|
12244
|
+
],
|
|
12245
|
+
nativeCurrency: { name: 'Matic', symbol: 'MATIC', decimals: 18 },
|
|
12246
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/verify-testnet',
|
|
12247
|
+
faucets: [],
|
|
12248
|
+
shortName: 'verify-testnet',
|
|
12249
|
+
chainId: 1833,
|
|
12250
|
+
networkId: 1833,
|
|
12251
|
+
slip44: 60,
|
|
12252
|
+
explorers: [
|
|
12253
|
+
{
|
|
12254
|
+
name: 'blockscout',
|
|
12255
|
+
url: 'https://verify-testnet.blockscout.com',
|
|
12256
|
+
icon: 'blockscout',
|
|
12257
|
+
standard: 'EIP3091'
|
|
12258
|
+
}
|
|
12259
|
+
],
|
|
12260
|
+
parent: {
|
|
12261
|
+
type: 'L2',
|
|
12262
|
+
chain: 'eip155-80002',
|
|
12263
|
+
bridges: [
|
|
12264
|
+
{ url: 'https://bridge.gelato.network/bridge/verify-testnet' }
|
|
12265
|
+
]
|
|
12266
|
+
}
|
|
12267
|
+
},
|
|
12220
12268
|
{
|
|
12221
12269
|
name: 'HighOctane Subnet',
|
|
12222
12270
|
chain: 'HighOctane Subnet',
|
|
@@ -22607,6 +22655,21 @@ const chainArray = [
|
|
|
22607
22655
|
chainId: 10101,
|
|
22608
22656
|
networkId: 10101
|
|
22609
22657
|
},
|
|
22658
|
+
{
|
|
22659
|
+
name: 'Monad Testnet',
|
|
22660
|
+
chain: 'MON',
|
|
22661
|
+
icon: 'monad',
|
|
22662
|
+
rpc: [],
|
|
22663
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
22664
|
+
faucets: [],
|
|
22665
|
+
nativeCurrency: { name: 'Testnet MON Token', symbol: 'MON', decimals: 18 },
|
|
22666
|
+
infoURL: 'https://monad.xyz',
|
|
22667
|
+
shortName: 'mon-testnet',
|
|
22668
|
+
chainId: 10143,
|
|
22669
|
+
networkId: 10143,
|
|
22670
|
+
slip44: 1,
|
|
22671
|
+
explorers: []
|
|
22672
|
+
},
|
|
22610
22673
|
{
|
|
22611
22674
|
name: 'Gnosis Chiado Testnet',
|
|
22612
22675
|
chain: 'GNO',
|
|
@@ -24304,6 +24367,36 @@ const chainArray = [
|
|
|
24304
24367
|
}
|
|
24305
24368
|
]
|
|
24306
24369
|
},
|
|
24370
|
+
{
|
|
24371
|
+
name: 'Eventum Testnet',
|
|
24372
|
+
title: 'Eventum Testnet',
|
|
24373
|
+
chain: 'eventum-testnet',
|
|
24374
|
+
rpc: [ 'https://testnet-rpc.eh-dev.app', 'wss://testnet-ws.eh-dev.app' ],
|
|
24375
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
24376
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/event-horizon-eventum-testnet',
|
|
24377
|
+
faucets: [],
|
|
24378
|
+
shortName: 'eventum-testnet',
|
|
24379
|
+
chainId: 16182,
|
|
24380
|
+
networkId: 16182,
|
|
24381
|
+
slip44: 60,
|
|
24382
|
+
explorers: [
|
|
24383
|
+
{
|
|
24384
|
+
name: 'blockscout',
|
|
24385
|
+
url: 'https://testnet-blockscout.eh-dev.app',
|
|
24386
|
+
standard: 'EIP3091'
|
|
24387
|
+
}
|
|
24388
|
+
],
|
|
24389
|
+
parent: {
|
|
24390
|
+
type: 'L2',
|
|
24391
|
+
chain: 'eip155-421614',
|
|
24392
|
+
bridges: [
|
|
24393
|
+
{
|
|
24394
|
+
url: 'https://testnet-bridge.eh-dev.app/bridge/event-horizon-eventum-testnet'
|
|
24395
|
+
}
|
|
24396
|
+
]
|
|
24397
|
+
},
|
|
24398
|
+
status: 'active'
|
|
24399
|
+
},
|
|
24307
24400
|
{
|
|
24308
24401
|
name: 'Incentiv Devnet',
|
|
24309
24402
|
chain: 'Incentiv',
|
|
@@ -24942,6 +25035,7 @@ const chainArray = [
|
|
|
24942
25035
|
shortName: 'locachain',
|
|
24943
25036
|
chainId: 19180,
|
|
24944
25037
|
networkId: 19180,
|
|
25038
|
+
icon: 'locacoin',
|
|
24945
25039
|
explorers: [
|
|
24946
25040
|
{
|
|
24947
25041
|
name: 'Locachain Explorer',
|
|
@@ -25179,6 +25273,21 @@ const chainArray = [
|
|
|
25179
25273
|
}
|
|
25180
25274
|
]
|
|
25181
25275
|
},
|
|
25276
|
+
{
|
|
25277
|
+
name: 'Monad Devnet',
|
|
25278
|
+
chain: 'MON',
|
|
25279
|
+
icon: 'monad',
|
|
25280
|
+
rpc: [],
|
|
25281
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
25282
|
+
faucets: [],
|
|
25283
|
+
nativeCurrency: { name: 'Devnet MON Token', symbol: 'MON', decimals: 18 },
|
|
25284
|
+
infoURL: 'https://monad.xyz',
|
|
25285
|
+
shortName: 'mon-devnet',
|
|
25286
|
+
chainId: 20143,
|
|
25287
|
+
networkId: 20143,
|
|
25288
|
+
slip44: 1,
|
|
25289
|
+
explorers: []
|
|
25290
|
+
},
|
|
25182
25291
|
{
|
|
25183
25292
|
name: 'Callisto Testnet',
|
|
25184
25293
|
chain: 'CLO',
|
|
@@ -33357,6 +33466,39 @@ const chainArray = [
|
|
|
33357
33466
|
}
|
|
33358
33467
|
]
|
|
33359
33468
|
},
|
|
33469
|
+
{
|
|
33470
|
+
name: 'Anomaly Andromeda Testnet',
|
|
33471
|
+
title: 'Anomaly Andromeda Testnet',
|
|
33472
|
+
chain: 'anomaly-andromeda-testnet',
|
|
33473
|
+
rpc: [
|
|
33474
|
+
'https://rpc.anomaly-andromeda.anomalygames.io',
|
|
33475
|
+
'wss://ws.anomaly-andromeda.anomalygames.io'
|
|
33476
|
+
],
|
|
33477
|
+
nativeCurrency: { name: 'TestNom', symbol: 'tNOM', decimals: 18 },
|
|
33478
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/anomaly-andromeda-testnet',
|
|
33479
|
+
faucets: [],
|
|
33480
|
+
shortName: 'anomaly-andromeda-testnet',
|
|
33481
|
+
chainId: 241120,
|
|
33482
|
+
networkId: 241120,
|
|
33483
|
+
slip44: 60,
|
|
33484
|
+
explorers: [
|
|
33485
|
+
{
|
|
33486
|
+
name: 'blockscout',
|
|
33487
|
+
url: 'https://andromeda.anomalyscan.io',
|
|
33488
|
+
icon: 'blockscout',
|
|
33489
|
+
standard: 'EIP3091'
|
|
33490
|
+
}
|
|
33491
|
+
],
|
|
33492
|
+
parent: {
|
|
33493
|
+
type: 'L2',
|
|
33494
|
+
chain: 'eip155-421614',
|
|
33495
|
+
bridges: [
|
|
33496
|
+
{
|
|
33497
|
+
url: 'https://bridge.gelato.network/bridge/anomaly-andromeda-testnet'
|
|
33498
|
+
}
|
|
33499
|
+
]
|
|
33500
|
+
}
|
|
33501
|
+
},
|
|
33360
33502
|
{
|
|
33361
33503
|
name: 'ARTIS sigma1',
|
|
33362
33504
|
chain: 'ARTIS',
|
|
@@ -36589,17 +36731,22 @@ const chainArray = [
|
|
|
36589
36731
|
explorers: []
|
|
36590
36732
|
},
|
|
36591
36733
|
{
|
|
36592
|
-
name: 'Funki Sepolia
|
|
36734
|
+
name: 'Funki Sepolia Testnet',
|
|
36593
36735
|
chain: 'ETH',
|
|
36594
36736
|
icon: 'funki',
|
|
36595
36737
|
rpc: [ 'https://funki-testnet.alt.technology' ],
|
|
36596
|
-
faucets: [],
|
|
36738
|
+
faucets: [ 'https://funkichain.com/portfolio' ],
|
|
36597
36739
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
36598
36740
|
infoURL: 'https://funkichain.com',
|
|
36599
36741
|
shortName: 'funkisepolia',
|
|
36600
36742
|
chainId: 3397901,
|
|
36601
36743
|
networkId: 3397901,
|
|
36602
36744
|
explorers: [
|
|
36745
|
+
{
|
|
36746
|
+
name: 'Funki Sepolia Testnet Explorer',
|
|
36747
|
+
url: 'https://testnet.funkiscan.io',
|
|
36748
|
+
standard: 'none'
|
|
36749
|
+
},
|
|
36603
36750
|
{
|
|
36604
36751
|
name: 'Funki Sepolia Sandbox Explorer',
|
|
36605
36752
|
url: 'https://sepolia-sandbox.funkichain.com',
|
|
@@ -38549,6 +38696,34 @@ const chainArray = [
|
|
|
38549
38696
|
}
|
|
38550
38697
|
]
|
|
38551
38698
|
},
|
|
38699
|
+
{
|
|
38700
|
+
name: 'Reya Cronos',
|
|
38701
|
+
title: 'Reya Cronos',
|
|
38702
|
+
chain: 'reya-cronos',
|
|
38703
|
+
rpc: [
|
|
38704
|
+
'https://rpc.reya-cronos.gelato.digital',
|
|
38705
|
+
'wss://ws.reya-cronos.gelato.digital'
|
|
38706
|
+
],
|
|
38707
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
38708
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/reya-cronos',
|
|
38709
|
+
faucets: [],
|
|
38710
|
+
shortName: 'reya-cronos',
|
|
38711
|
+
chainId: 89346162,
|
|
38712
|
+
networkId: 89346162,
|
|
38713
|
+
slip44: 60,
|
|
38714
|
+
explorers: [
|
|
38715
|
+
{
|
|
38716
|
+
name: 'blockscout',
|
|
38717
|
+
url: 'https://reya-cronos.blockscout.com',
|
|
38718
|
+
standard: 'EIP3091'
|
|
38719
|
+
}
|
|
38720
|
+
],
|
|
38721
|
+
parent: {
|
|
38722
|
+
type: 'L2',
|
|
38723
|
+
chain: 'eip155-11155111',
|
|
38724
|
+
bridges: [ { url: 'https://bridge.gelato.network/bridge/reya-cronos' } ]
|
|
38725
|
+
}
|
|
38726
|
+
},
|
|
38552
38727
|
{
|
|
38553
38728
|
name: 'Polygon Blackberry',
|
|
38554
38729
|
title: 'Polygon Blackberry Testnet',
|
|
@@ -40343,6 +40518,39 @@ const chainArray = [
|
|
|
40343
40518
|
],
|
|
40344
40519
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
40345
40520
|
},
|
|
40521
|
+
{
|
|
40522
|
+
name: 'PIN',
|
|
40523
|
+
title: 'PIN',
|
|
40524
|
+
chain: 'PIN',
|
|
40525
|
+
rpc: [
|
|
40526
|
+
'https://rpc.pin.t.raas.gelato.cloud',
|
|
40527
|
+
'wss://ws.pin.t.raas.gelato.cloud'
|
|
40528
|
+
],
|
|
40529
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
40530
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/pin',
|
|
40531
|
+
faucets: [],
|
|
40532
|
+
shortName: 'PIN',
|
|
40533
|
+
chainId: 123420000558,
|
|
40534
|
+
networkId: 123420000558,
|
|
40535
|
+
slip44: 60,
|
|
40536
|
+
explorers: [
|
|
40537
|
+
{
|
|
40538
|
+
name: 'blockscout',
|
|
40539
|
+
url: 'https://explorer.pin.t.raas.gelato.cloud',
|
|
40540
|
+
icon: 'blockscout',
|
|
40541
|
+
standard: 'EIP3091'
|
|
40542
|
+
}
|
|
40543
|
+
],
|
|
40544
|
+
parent: {
|
|
40545
|
+
type: 'L2',
|
|
40546
|
+
chain: 'eip155-11155111',
|
|
40547
|
+
bridges: [
|
|
40548
|
+
{
|
|
40549
|
+
url: 'https://testnet-bridge.gelato.network/bridge/pin/bridge/pin'
|
|
40550
|
+
}
|
|
40551
|
+
]
|
|
40552
|
+
}
|
|
40553
|
+
},
|
|
40346
40554
|
{
|
|
40347
40555
|
name: 'sivo-defi-testnet',
|
|
40348
40556
|
title: 'Sivo Defi Testnet',
|