eth-chainlist 0.0.702 → 0.0.704
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 +16 -0
- package/data/chain.js +95 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.704 (2025-12-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.703 ([ef43266](https://github.com/poowf/eth-chainlist/commit/ef432660a85debc1c0734187efe04120bcebd31c))
|
|
9
|
+
* update chain data ([d4b4d83](https://github.com/poowf/eth-chainlist/commit/d4b4d8390f0f29fda4201d24fe572973643d0e06))
|
|
10
|
+
|
|
11
|
+
### 0.0.703 (2025-11-28)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.702 ([0763c03](https://github.com/poowf/eth-chainlist/commit/0763c03867453dd63f71dd388b9d884f1bde1c67))
|
|
17
|
+
* update chain data ([24c142d](https://github.com/poowf/eth-chainlist/commit/24c142ddd0bdc49125f34523bcf5be9109eafad1))
|
|
18
|
+
|
|
3
19
|
### 0.0.702 (2025-11-26)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -11673,40 +11673,30 @@ const chainArray = [
|
|
|
11673
11673
|
name: 'ARC Mainnet',
|
|
11674
11674
|
chain: 'ARC',
|
|
11675
11675
|
icon: 'arc',
|
|
11676
|
-
rpc: [
|
|
11676
|
+
rpc: [],
|
|
11677
11677
|
faucets: [],
|
|
11678
11678
|
nativeCurrency: { name: 'ARC', symbol: 'ARC', decimals: 18 },
|
|
11679
11679
|
infoURL: 'https://archiechain.io/',
|
|
11680
11680
|
shortName: 'ARC',
|
|
11681
11681
|
chainId: 1243,
|
|
11682
11682
|
networkId: 1243,
|
|
11683
|
-
explorers: [
|
|
11684
|
-
|
|
11685
|
-
name: 'archiescan',
|
|
11686
|
-
url: 'https://app.archiescan.io',
|
|
11687
|
-
standard: 'none'
|
|
11688
|
-
}
|
|
11689
|
-
]
|
|
11683
|
+
explorers: [],
|
|
11684
|
+
status: 'deprecated'
|
|
11690
11685
|
},
|
|
11691
11686
|
{
|
|
11692
11687
|
name: 'ARC Testnet',
|
|
11693
11688
|
chain: 'ARC',
|
|
11694
11689
|
icon: 'arc',
|
|
11695
|
-
rpc: [
|
|
11696
|
-
faucets: [
|
|
11690
|
+
rpc: [],
|
|
11691
|
+
faucets: [],
|
|
11697
11692
|
nativeCurrency: { name: 'ARC', symbol: 'ARC', decimals: 18 },
|
|
11698
11693
|
infoURL: 'https://archiechain.io/',
|
|
11699
11694
|
shortName: 'TARC',
|
|
11700
11695
|
chainId: 1244,
|
|
11701
11696
|
networkId: 1244,
|
|
11702
11697
|
slip44: 1,
|
|
11703
|
-
explorers: [
|
|
11704
|
-
|
|
11705
|
-
name: 'archiescan',
|
|
11706
|
-
url: 'https://testnet.archiescan.io',
|
|
11707
|
-
standard: 'none'
|
|
11708
|
-
}
|
|
11709
|
-
]
|
|
11698
|
+
explorers: [],
|
|
11699
|
+
status: 'deprecated'
|
|
11710
11700
|
},
|
|
11711
11701
|
{
|
|
11712
11702
|
name: 'OM Platform Mainnet',
|
|
@@ -19759,6 +19749,26 @@ const chainArray = [
|
|
|
19759
19749
|
networkId: 4422,
|
|
19760
19750
|
explorers: []
|
|
19761
19751
|
},
|
|
19752
|
+
{
|
|
19753
|
+
name: 'Denergy Testnet',
|
|
19754
|
+
chain: 'DEN',
|
|
19755
|
+
rpc: [ 'https://rpc.denergytestnet.com/' ],
|
|
19756
|
+
faucets: [],
|
|
19757
|
+
nativeCurrency: { name: 'WATT', symbol: 'WATT', decimals: 18 },
|
|
19758
|
+
infoURL: 'https://d.energy/',
|
|
19759
|
+
shortName: 'den-testnet',
|
|
19760
|
+
chainId: 4442,
|
|
19761
|
+
networkId: 4442,
|
|
19762
|
+
icon: 'denergy',
|
|
19763
|
+
explorers: [
|
|
19764
|
+
{
|
|
19765
|
+
name: 'Denergy Explorer',
|
|
19766
|
+
url: 'https://explorer.denergytestnet.com',
|
|
19767
|
+
icon: 'denergy',
|
|
19768
|
+
standard: 'EIP3091'
|
|
19769
|
+
}
|
|
19770
|
+
]
|
|
19771
|
+
},
|
|
19762
19772
|
{
|
|
19763
19773
|
name: 'Htmlcoin Mainnet',
|
|
19764
19774
|
chain: 'mainnet',
|
|
@@ -34853,6 +34863,31 @@ const chainArray = [
|
|
|
34853
34863
|
chainId: 67588,
|
|
34854
34864
|
networkId: 3344
|
|
34855
34865
|
},
|
|
34866
|
+
{
|
|
34867
|
+
name: 'Henesys',
|
|
34868
|
+
chain: 'Henesys',
|
|
34869
|
+
rpc: [ 'https://henesys-rpc.msu.io' ],
|
|
34870
|
+
faucets: [],
|
|
34871
|
+
nativeCurrency: { name: 'NEXPACE', symbol: 'NXPC', decimals: 18 },
|
|
34872
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
34873
|
+
infoURL: 'https://nexpace.io',
|
|
34874
|
+
shortName: 'nxpc',
|
|
34875
|
+
chainId: 68414,
|
|
34876
|
+
networkId: 68414,
|
|
34877
|
+
icon: 'nexpace',
|
|
34878
|
+
explorers: [
|
|
34879
|
+
{
|
|
34880
|
+
name: 'Xangle MSU Explorer',
|
|
34881
|
+
url: 'https://msu-explorer.xangle.io',
|
|
34882
|
+
standard: 'EIP3091'
|
|
34883
|
+
},
|
|
34884
|
+
{
|
|
34885
|
+
name: 'Avalanche Explorer',
|
|
34886
|
+
url: 'https://subnets.avax.network/henesys',
|
|
34887
|
+
standard: 'EIP3091'
|
|
34888
|
+
}
|
|
34889
|
+
]
|
|
34890
|
+
},
|
|
34856
34891
|
{
|
|
34857
34892
|
name: 'DM2 Verse Mainnet',
|
|
34858
34893
|
chain: 'DM2 Verse',
|
|
@@ -40959,6 +40994,26 @@ const chainArray = [
|
|
|
40959
40994
|
}
|
|
40960
40995
|
]
|
|
40961
40996
|
},
|
|
40997
|
+
{
|
|
40998
|
+
name: 'Denergy Network',
|
|
40999
|
+
chain: 'DEN',
|
|
41000
|
+
rpc: [ 'https://rpc.d.energy/' ],
|
|
41001
|
+
faucets: [],
|
|
41002
|
+
nativeCurrency: { name: 'WATT', symbol: 'WATT', decimals: 18 },
|
|
41003
|
+
infoURL: 'https://d.energy/',
|
|
41004
|
+
shortName: 'den-mainnet',
|
|
41005
|
+
chainId: 369369,
|
|
41006
|
+
networkId: 369369,
|
|
41007
|
+
icon: 'denergy',
|
|
41008
|
+
explorers: [
|
|
41009
|
+
{
|
|
41010
|
+
name: 'Denergy Explorer',
|
|
41011
|
+
url: 'https://explorer.denergychain.com',
|
|
41012
|
+
icon: 'denergy',
|
|
41013
|
+
standard: 'EIP3091'
|
|
41014
|
+
}
|
|
41015
|
+
]
|
|
41016
|
+
},
|
|
40962
41017
|
{
|
|
40963
41018
|
name: 'HAPchain Testnet',
|
|
40964
41019
|
chain: 'HAPchain',
|
|
@@ -44520,6 +44575,29 @@ const chainArray = [
|
|
|
44520
44575
|
}
|
|
44521
44576
|
]
|
|
44522
44577
|
},
|
|
44578
|
+
{
|
|
44579
|
+
name: 'Reactive Lasna',
|
|
44580
|
+
title: 'Reactive Network Testnet Lasna',
|
|
44581
|
+
chain: 'REACT',
|
|
44582
|
+
rpc: [ 'https://lasna-rpc.rnk.dev' ],
|
|
44583
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
44584
|
+
faucets: [
|
|
44585
|
+
'https://dev.reactive.network/reactive-mainnet#get-testnet-react'
|
|
44586
|
+
],
|
|
44587
|
+
nativeCurrency: { name: 'Lasna React', symbol: 'lREACT', decimals: 18 },
|
|
44588
|
+
infoURL: 'https://reactive.network',
|
|
44589
|
+
shortName: 'lreact',
|
|
44590
|
+
icon: 'reactive',
|
|
44591
|
+
chainId: 5318007,
|
|
44592
|
+
networkId: 5318007,
|
|
44593
|
+
explorers: [
|
|
44594
|
+
{
|
|
44595
|
+
name: 'Reactscan',
|
|
44596
|
+
url: 'https://lasna.reactscan.net',
|
|
44597
|
+
standard: 'none'
|
|
44598
|
+
}
|
|
44599
|
+
]
|
|
44600
|
+
},
|
|
44523
44601
|
{
|
|
44524
44602
|
name: 'Reactive Kopli',
|
|
44525
44603
|
title: 'Reactive Network Testnet Kopli',
|