eth-chainlist 0.0.725 → 0.0.729
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 +31 -0
- package/data/chain.js +153 -44
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.729 (2026-01-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* update chain data ([18b4ccc](https://github.com/poowf/eth-chainlist/commit/18b4ccca733b17f412401d574af7f7eab769cccf))
|
|
9
|
+
|
|
10
|
+
### 0.0.728 (2026-01-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* **release:** 0.0.727 ([750ab46](https://github.com/poowf/eth-chainlist/commit/750ab469383f98f586e81e3c443114e0db0eca7a))
|
|
16
|
+
* update chain data ([ef68e3a](https://github.com/poowf/eth-chainlist/commit/ef68e3ac06201222b8a0b2a886f1ad9d1df1e4e5))
|
|
17
|
+
|
|
18
|
+
### 0.0.727 (2026-01-22)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Maintenance
|
|
22
|
+
|
|
23
|
+
* **release:** 0.0.726 ([fcb8ad1](https://github.com/poowf/eth-chainlist/commit/fcb8ad11e75d23e0af2579d206b3af349d71bf38))
|
|
24
|
+
* update chain data ([afac764](https://github.com/poowf/eth-chainlist/commit/afac764b9a9ba851685f6b9b1e00687b27079747))
|
|
25
|
+
|
|
26
|
+
### 0.0.726 (2026-01-21)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Maintenance
|
|
30
|
+
|
|
31
|
+
* fix running commands with pnpm ([72a1841](https://github.com/poowf/eth-chainlist/commit/72a18418d7b7da0dbed1ee87fdd4bcc449a3cf90))
|
|
32
|
+
* update chain data ([b0f5d83](https://github.com/poowf/eth-chainlist/commit/b0f5d83fec55382735cad67f841b025c54558ece))
|
|
33
|
+
|
|
3
34
|
### [0.0.725](https://github.com/poowf/eth-chainlist/compare/v0.0.724...v0.0.725) (2026-01-20)
|
|
4
35
|
|
|
5
36
|
### [0.0.724](https://github.com/poowf/eth-chainlist/compare/v0.0.723...v0.0.724) (2026-01-20)
|
package/data/chain.js
CHANGED
|
@@ -10306,6 +10306,26 @@ const chainArray = [
|
|
|
10306
10306
|
}
|
|
10307
10307
|
]
|
|
10308
10308
|
},
|
|
10309
|
+
{
|
|
10310
|
+
name: 'Stable Mainnet',
|
|
10311
|
+
chain: 'Stable',
|
|
10312
|
+
rpc: [ 'https://rpc.stable.xyz' ],
|
|
10313
|
+
faucets: [],
|
|
10314
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10315
|
+
nativeCurrency: { name: 'gUSDT', symbol: 'gUSDT', decimals: 18 },
|
|
10316
|
+
infoURL: 'https://stable.xyz',
|
|
10317
|
+
shortName: 'stable',
|
|
10318
|
+
chainId: 988,
|
|
10319
|
+
networkId: 988,
|
|
10320
|
+
icon: 'stable',
|
|
10321
|
+
explorers: [
|
|
10322
|
+
{
|
|
10323
|
+
name: 'Stablescan',
|
|
10324
|
+
url: 'https://stablescan.xyz',
|
|
10325
|
+
standard: 'EIP3091'
|
|
10326
|
+
}
|
|
10327
|
+
]
|
|
10328
|
+
},
|
|
10309
10329
|
{
|
|
10310
10330
|
name: 'TOP Mainnet',
|
|
10311
10331
|
chain: 'TOP',
|
|
@@ -13581,25 +13601,16 @@ const chainArray = [
|
|
|
13581
13601
|
shortName: 'Gobi',
|
|
13582
13602
|
chain: 'Gobi',
|
|
13583
13603
|
icon: 'eon',
|
|
13584
|
-
rpc: [
|
|
13585
|
-
'https://gobi-rpc.horizenlabs.io/ethv1',
|
|
13586
|
-
'https://rpc.ankr.com/horizen_gobi_testnet'
|
|
13587
|
-
],
|
|
13604
|
+
rpc: [],
|
|
13588
13605
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
13589
|
-
faucets: [
|
|
13606
|
+
faucets: [],
|
|
13590
13607
|
nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
|
|
13591
13608
|
infoURL: 'https://horizen.io/',
|
|
13592
13609
|
chainId: 1663,
|
|
13593
13610
|
networkId: 1663,
|
|
13594
13611
|
slip44: 1,
|
|
13595
|
-
explorers: [
|
|
13596
|
-
|
|
13597
|
-
name: 'Gobi Testnet Block Explorer',
|
|
13598
|
-
url: 'https://gobi-explorer.horizen.io',
|
|
13599
|
-
icon: 'eon',
|
|
13600
|
-
standard: 'EIP3091'
|
|
13601
|
-
}
|
|
13602
|
-
]
|
|
13612
|
+
explorers: [],
|
|
13613
|
+
status: 'deprecated'
|
|
13603
13614
|
},
|
|
13604
13615
|
{
|
|
13605
13616
|
name: 'Mint Testnet',
|
|
@@ -16313,18 +16324,12 @@ const chainArray = [
|
|
|
16313
16324
|
icon: 'stable',
|
|
16314
16325
|
rpc: [ 'https://rpc.testnet.stable.xyz' ],
|
|
16315
16326
|
faucets: [ 'https://faucet.stable.xyz' ],
|
|
16316
|
-
nativeCurrency: { name: '
|
|
16327
|
+
nativeCurrency: { name: 'USDT0', symbol: 'USDT0', decimals: 18 },
|
|
16317
16328
|
infoURL: 'https://stable.xyz',
|
|
16318
16329
|
shortName: 'stable-testnet',
|
|
16319
16330
|
chainId: 2201,
|
|
16320
16331
|
networkId: 2201,
|
|
16321
16332
|
explorers: [
|
|
16322
|
-
{
|
|
16323
|
-
name: 'Blockscout Explorer',
|
|
16324
|
-
url: 'https://blockscout.testnet.stable.xyz',
|
|
16325
|
-
icon: 'blockscout',
|
|
16326
|
-
standard: 'EIP3091'
|
|
16327
|
-
},
|
|
16328
16333
|
{
|
|
16329
16334
|
name: 'Stablescan',
|
|
16330
16335
|
url: 'https://testnet.stablescan.xyz',
|
|
@@ -19845,6 +19850,32 @@ const chainArray = [
|
|
|
19845
19850
|
}
|
|
19846
19851
|
]
|
|
19847
19852
|
},
|
|
19853
|
+
{
|
|
19854
|
+
name: 'RISE',
|
|
19855
|
+
chain: 'ETH',
|
|
19856
|
+
rpc: [ 'https://rpc.risechain.com/', 'wss://rpc.risechain.com/ws' ],
|
|
19857
|
+
faucets: [],
|
|
19858
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
19859
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP7702' } ],
|
|
19860
|
+
infoURL: 'https://risechain.com',
|
|
19861
|
+
shortName: 'rise',
|
|
19862
|
+
chainId: 4153,
|
|
19863
|
+
networkId: 4153,
|
|
19864
|
+
icon: 'rise',
|
|
19865
|
+
explorers: [
|
|
19866
|
+
{
|
|
19867
|
+
name: 'Blockscout',
|
|
19868
|
+
url: 'https://explorer.risechain.com',
|
|
19869
|
+
icon: 'blockscout',
|
|
19870
|
+
standard: 'EIP3091'
|
|
19871
|
+
}
|
|
19872
|
+
],
|
|
19873
|
+
parent: {
|
|
19874
|
+
type: 'L2',
|
|
19875
|
+
chain: 'eip155-1',
|
|
19876
|
+
bridges: [ { url: 'https://bridge.risechain.com' } ]
|
|
19877
|
+
}
|
|
19878
|
+
},
|
|
19848
19879
|
{
|
|
19849
19880
|
name: 'CrossFi Testnet',
|
|
19850
19881
|
title: 'CrossFi Testnet',
|
|
@@ -23345,10 +23376,7 @@ const chainArray = [
|
|
|
23345
23376
|
shortName: 'EON',
|
|
23346
23377
|
chain: 'EON',
|
|
23347
23378
|
icon: 'eon',
|
|
23348
|
-
rpc: [
|
|
23349
|
-
'https://eon-rpc.horizenlabs.io/ethv1',
|
|
23350
|
-
'https://rpc.ankr.com/horizen_eon'
|
|
23351
|
-
],
|
|
23379
|
+
rpc: [],
|
|
23352
23380
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
23353
23381
|
faucets: [],
|
|
23354
23382
|
nativeCurrency: { name: 'Zencash', symbol: 'ZEN', decimals: 18 },
|
|
@@ -23356,14 +23384,8 @@ const chainArray = [
|
|
|
23356
23384
|
chainId: 7332,
|
|
23357
23385
|
networkId: 7332,
|
|
23358
23386
|
slip44: 121,
|
|
23359
|
-
explorers: [
|
|
23360
|
-
|
|
23361
|
-
name: 'Horizen EON Block Explorer',
|
|
23362
|
-
url: 'https://eon-explorer.horizenlabs.io',
|
|
23363
|
-
icon: 'eon',
|
|
23364
|
-
standard: 'EIP3091'
|
|
23365
|
-
}
|
|
23366
|
-
]
|
|
23387
|
+
explorers: [],
|
|
23388
|
+
status: 'deprecated'
|
|
23367
23389
|
},
|
|
23368
23390
|
{
|
|
23369
23391
|
name: 'Pruv Testnet',
|
|
@@ -23495,20 +23517,23 @@ const chainArray = [
|
|
|
23495
23517
|
]
|
|
23496
23518
|
},
|
|
23497
23519
|
{
|
|
23498
|
-
name: 'Rome
|
|
23520
|
+
name: 'Rome Palatine',
|
|
23499
23521
|
chain: 'ROME',
|
|
23500
|
-
rpc: [
|
|
23501
|
-
|
|
23522
|
+
rpc: [
|
|
23523
|
+
'https://palatine.romeprotocol.xyz',
|
|
23524
|
+
'https://palatine2.romeprotocol.xyz'
|
|
23525
|
+
],
|
|
23526
|
+
faucets: [],
|
|
23502
23527
|
nativeCurrency: { name: 'RSOL', symbol: 'RSOL', decimals: 18 },
|
|
23503
23528
|
infoURL: 'https://rome.builders',
|
|
23504
|
-
shortName: 'rome-
|
|
23529
|
+
shortName: 'rome-palatine',
|
|
23505
23530
|
chainId: 7531,
|
|
23506
23531
|
networkId: 7531,
|
|
23507
23532
|
icon: 'rome',
|
|
23508
23533
|
explorers: [
|
|
23509
23534
|
{
|
|
23510
|
-
name: 'Rome
|
|
23511
|
-
url: 'https://romescout-palatine
|
|
23535
|
+
name: 'Rome Palatine Explorer',
|
|
23536
|
+
url: 'https://romescout-palatine.romeprotocol.xyz',
|
|
23512
23537
|
icon: 'rome',
|
|
23513
23538
|
standard: 'EIP3091'
|
|
23514
23539
|
}
|
|
@@ -31749,7 +31774,7 @@ const chainArray = [
|
|
|
31749
31774
|
icon: 'dilithium3',
|
|
31750
31775
|
rpc: [
|
|
31751
31776
|
'https://rpc-testnet.dilithium3.com',
|
|
31752
|
-
'wss://
|
|
31777
|
+
'wss://ws-testnet.dilithium3.com'
|
|
31753
31778
|
],
|
|
31754
31779
|
faucets: [ 'https://faucet-testnet.dilithium3.com' ],
|
|
31755
31780
|
nativeCurrency: { name: 'Dilithium3', symbol: 'DLT', decimals: 18 },
|
|
@@ -31760,7 +31785,7 @@ const chainArray = [
|
|
|
31760
31785
|
slip44: 60,
|
|
31761
31786
|
explorers: [
|
|
31762
31787
|
{
|
|
31763
|
-
name: '
|
|
31788
|
+
name: 'Dilithium3 Explorer',
|
|
31764
31789
|
url: 'https://explorer-testnet.dilithium3.com',
|
|
31765
31790
|
standard: 'EIP3091'
|
|
31766
31791
|
}
|
|
@@ -36827,6 +36852,29 @@ const chainArray = [
|
|
|
36827
36852
|
}
|
|
36828
36853
|
]
|
|
36829
36854
|
},
|
|
36855
|
+
{
|
|
36856
|
+
name: 'Nillion Network Sepolia Testnet',
|
|
36857
|
+
chain: 'ETH',
|
|
36858
|
+
rpc: [
|
|
36859
|
+
'https://rpc.testnet.nillion.network',
|
|
36860
|
+
'wss://rpc.testnet.nillion.network'
|
|
36861
|
+
],
|
|
36862
|
+
faucets: [],
|
|
36863
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
36864
|
+
infoURL: 'https://nillion.com/',
|
|
36865
|
+
shortName: 'nilsep',
|
|
36866
|
+
chainId: 78651,
|
|
36867
|
+
networkId: 78651,
|
|
36868
|
+
slip44: 1,
|
|
36869
|
+
explorers: [
|
|
36870
|
+
{
|
|
36871
|
+
name: 'blockscout',
|
|
36872
|
+
url: 'https://explorer.testnet.nillion.network',
|
|
36873
|
+
icon: 'blockscout',
|
|
36874
|
+
standard: 'EIP3091'
|
|
36875
|
+
}
|
|
36876
|
+
]
|
|
36877
|
+
},
|
|
36830
36878
|
{
|
|
36831
36879
|
name: 'Gold Smart Chain Testnet',
|
|
36832
36880
|
chain: 'STAND',
|
|
@@ -38585,6 +38633,26 @@ const chainArray = [
|
|
|
38585
38633
|
bridges: [ { url: 'https://testnet-bridge.plume.org' } ]
|
|
38586
38634
|
}
|
|
38587
38635
|
},
|
|
38636
|
+
{
|
|
38637
|
+
name: 'Nillion Network',
|
|
38638
|
+
chain: 'ETH',
|
|
38639
|
+
rpc: [ 'https://rpc.nillion.network', 'wss://rpc.nillion.network' ],
|
|
38640
|
+
faucets: [],
|
|
38641
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
38642
|
+
infoURL: 'https://nillion.com/',
|
|
38643
|
+
shortName: 'nil',
|
|
38644
|
+
chainId: 98875,
|
|
38645
|
+
networkId: 98875,
|
|
38646
|
+
slip44: 1,
|
|
38647
|
+
explorers: [
|
|
38648
|
+
{
|
|
38649
|
+
name: 'blockscout',
|
|
38650
|
+
url: 'https://explorer.nillion.network',
|
|
38651
|
+
icon: 'blockscout',
|
|
38652
|
+
standard: 'EIP3091'
|
|
38653
|
+
}
|
|
38654
|
+
]
|
|
38655
|
+
},
|
|
38588
38656
|
{
|
|
38589
38657
|
name: 'Ebi Chain',
|
|
38590
38658
|
title: 'Ebi Chain',
|
|
@@ -44036,7 +44104,17 @@ const chainArray = [
|
|
|
44036
44104
|
{
|
|
44037
44105
|
name: 'katana',
|
|
44038
44106
|
chain: 'katana',
|
|
44039
|
-
rpc: [
|
|
44107
|
+
rpc: [
|
|
44108
|
+
'https://rpc.katana.network',
|
|
44109
|
+
'https://katana.gateway.tenderly.co/',
|
|
44110
|
+
'https://rpc.katanarpc.com/'
|
|
44111
|
+
],
|
|
44112
|
+
features: [
|
|
44113
|
+
{ name: 'EIP155' },
|
|
44114
|
+
{ name: 'EIP1559' },
|
|
44115
|
+
{ name: 'EIP4844' },
|
|
44116
|
+
{ name: 'EIP7702' }
|
|
44117
|
+
],
|
|
44040
44118
|
faucets: [],
|
|
44041
44119
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
44042
44120
|
infoURL: 'https://katana.network',
|
|
@@ -44045,13 +44123,24 @@ const chainArray = [
|
|
|
44045
44123
|
networkId: 747474,
|
|
44046
44124
|
icon: 'katana',
|
|
44047
44125
|
explorers: [
|
|
44126
|
+
{
|
|
44127
|
+
name: 'katanascan',
|
|
44128
|
+
url: 'https://katanascan.com',
|
|
44129
|
+
icon: 'katana',
|
|
44130
|
+
standard: 'EIP3091'
|
|
44131
|
+
},
|
|
44048
44132
|
{
|
|
44049
44133
|
name: 'katana explorer',
|
|
44050
44134
|
url: 'https://explorer.katanarpc.com',
|
|
44051
44135
|
icon: 'katana',
|
|
44052
44136
|
standard: 'EIP3091'
|
|
44053
44137
|
}
|
|
44054
|
-
]
|
|
44138
|
+
],
|
|
44139
|
+
parent: {
|
|
44140
|
+
type: 'L2',
|
|
44141
|
+
chain: 'eip155-1',
|
|
44142
|
+
bridges: [ { url: 'https://bridge.katana.network' } ]
|
|
44143
|
+
}
|
|
44055
44144
|
},
|
|
44056
44145
|
{
|
|
44057
44146
|
name: 'Bear Network Chain Testnet',
|
|
@@ -45851,6 +45940,26 @@ const chainArray = [
|
|
|
45851
45940
|
icon: 'coti',
|
|
45852
45941
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
45853
45942
|
},
|
|
45943
|
+
{
|
|
45944
|
+
name: 'Horizen Testnet',
|
|
45945
|
+
chain: 'horizen',
|
|
45946
|
+
rpc: [ 'https://horizen-testnet.rpc.caldera.xyz/http' ],
|
|
45947
|
+
faucets: [],
|
|
45948
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
45949
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
45950
|
+
infoURL: 'https://horizen-testnet.hub.caldera.xyz',
|
|
45951
|
+
shortName: 'horizen-testnet',
|
|
45952
|
+
chainId: 2651420,
|
|
45953
|
+
networkId: 2651420,
|
|
45954
|
+
icon: 'horizen',
|
|
45955
|
+
explorers: [
|
|
45956
|
+
{
|
|
45957
|
+
name: 'Horizen Testnet Caldera Explorer',
|
|
45958
|
+
url: 'https://horizen-testnet.explorer.caldera.xyz',
|
|
45959
|
+
standard: 'EIP3091'
|
|
45960
|
+
}
|
|
45961
|
+
]
|
|
45962
|
+
},
|
|
45854
45963
|
{
|
|
45855
45964
|
name: 'Xterio Chain (ETH)',
|
|
45856
45965
|
chain: 'Xterio',
|
|
@@ -47114,8 +47223,8 @@ const chainArray = [
|
|
|
47114
47223
|
rpc: [ 'https://testnet.riselabs.xyz', 'wss://testnet.riselabs.xyz/ws' ],
|
|
47115
47224
|
faucets: [ 'https://faucet.testnet.riselabs.xyz' ],
|
|
47116
47225
|
nativeCurrency: { name: 'RISE Testnet Ether', symbol: 'ETH', decimals: 18 },
|
|
47117
|
-
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
47118
|
-
infoURL: 'https://
|
|
47226
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP7702' } ],
|
|
47227
|
+
infoURL: 'https://risechain.com/',
|
|
47119
47228
|
shortName: 'rise-testnet',
|
|
47120
47229
|
chainId: 11155931,
|
|
47121
47230
|
networkId: 11155931,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eth-chainlist",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.729",
|
|
4
4
|
"description": "List of EVM Chains",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"lint-staged": {
|
|
7
7
|
"./**/*.{ts,js,tsx,jsx}": [
|
|
8
|
-
"pnpm lint --fix",
|
|
9
|
-
"pnpm format"
|
|
8
|
+
"pnpm run lint --fix",
|
|
9
|
+
"pnpm run format"
|
|
10
10
|
]
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|