eth-chainlist 0.0.802 → 0.0.804
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 +167 -38
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.804 (2026-08-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.803 ([8423d40](https://github.com/poowf/eth-chainlist/commit/8423d40035af45c4a80dde147910f227821d36df))
|
|
9
|
+
* update chain data ([320a5ed](https://github.com/poowf/eth-chainlist/commit/320a5ed3c2d67d97cc82fa2cb82ec853ff481a1d))
|
|
10
|
+
|
|
11
|
+
### 0.0.803 (2026-08-08)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.802 ([aea51c3](https://github.com/poowf/eth-chainlist/commit/aea51c36a06c704f7dac4c983eb5beedf2d5c0d8))
|
|
17
|
+
* update chain data ([3a2840a](https://github.com/poowf/eth-chainlist/commit/3a2840aa590439152372aec99f43f1795b0602ee))
|
|
18
|
+
|
|
3
19
|
### 0.0.802 (2026-08-06)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -5419,6 +5419,24 @@ const chainArray = [
|
|
|
5419
5419
|
],
|
|
5420
5420
|
status: 'deprecated'
|
|
5421
5421
|
},
|
|
5422
|
+
{
|
|
5423
|
+
name: 'NetX Mainnet',
|
|
5424
|
+
chain: 'NETX',
|
|
5425
|
+
rpc: [ 'https://rpc.netxscan.io' ],
|
|
5426
|
+
faucets: [],
|
|
5427
|
+
nativeCurrency: { name: 'NetX Token', symbol: 'NETX', decimals: 18 },
|
|
5428
|
+
infoURL: 'https://netx.world/',
|
|
5429
|
+
shortName: 'netx',
|
|
5430
|
+
chainId: 287,
|
|
5431
|
+
networkId: 287,
|
|
5432
|
+
explorers: [
|
|
5433
|
+
{
|
|
5434
|
+
name: 'NetXScan',
|
|
5435
|
+
url: 'https://netxscan.io',
|
|
5436
|
+
standard: 'EIP3091'
|
|
5437
|
+
}
|
|
5438
|
+
]
|
|
5439
|
+
},
|
|
5422
5440
|
{
|
|
5423
5441
|
name: 'Boba Network',
|
|
5424
5442
|
chain: 'ETH',
|
|
@@ -7809,6 +7827,24 @@ const chainArray = [
|
|
|
7809
7827
|
}
|
|
7810
7828
|
]
|
|
7811
7829
|
},
|
|
7830
|
+
{
|
|
7831
|
+
name: 'NetX Testnet',
|
|
7832
|
+
chain: 'NETX',
|
|
7833
|
+
rpc: [ 'https://testnetrpc.netxscan.io' ],
|
|
7834
|
+
faucets: [ 'https://netx.world/faucet/' ],
|
|
7835
|
+
nativeCurrency: { name: 'NetX Token', symbol: 'NETX', decimals: 18 },
|
|
7836
|
+
infoURL: 'https://netx.world/',
|
|
7837
|
+
shortName: 'netx-testnet',
|
|
7838
|
+
chainId: 587,
|
|
7839
|
+
networkId: 587,
|
|
7840
|
+
explorers: [
|
|
7841
|
+
{
|
|
7842
|
+
name: 'NetXScan Testnet',
|
|
7843
|
+
url: 'https://testnet.netxscan.io',
|
|
7844
|
+
standard: 'EIP3091'
|
|
7845
|
+
}
|
|
7846
|
+
]
|
|
7847
|
+
},
|
|
7812
7848
|
{
|
|
7813
7849
|
name: 'Metis Stardust Testnet',
|
|
7814
7850
|
chain: 'ETH',
|
|
@@ -17078,6 +17114,26 @@ const chainArray = [
|
|
|
17078
17114
|
}
|
|
17079
17115
|
]
|
|
17080
17116
|
},
|
|
17117
|
+
{
|
|
17118
|
+
name: 'Morph Tachyon',
|
|
17119
|
+
title: 'Morph Tachyon Mainnet',
|
|
17120
|
+
chain: 'Morph Tachyon',
|
|
17121
|
+
rpc: [ 'https://api.popdex.xyz/api/v1/web3/rpc' ],
|
|
17122
|
+
faucets: [],
|
|
17123
|
+
nativeCurrency: { name: 'BGB', symbol: 'BGB', decimals: 18 },
|
|
17124
|
+
features: [ { name: 'EIP155' } ],
|
|
17125
|
+
infoURL: 'https://popdex.xyz',
|
|
17126
|
+
shortName: 'morphtachyon',
|
|
17127
|
+
chainId: 2184,
|
|
17128
|
+
networkId: 2184,
|
|
17129
|
+
explorers: [
|
|
17130
|
+
{
|
|
17131
|
+
name: 'Morph Tachyon Explorer',
|
|
17132
|
+
url: 'https://app.popdex.xyz/explorer',
|
|
17133
|
+
standard: 'none'
|
|
17134
|
+
}
|
|
17135
|
+
]
|
|
17136
|
+
},
|
|
17081
17137
|
{
|
|
17082
17138
|
name: 'Game7',
|
|
17083
17139
|
title: 'Game7',
|
|
@@ -20813,6 +20869,46 @@ const chainArray = [
|
|
|
20813
20869
|
}
|
|
20814
20870
|
]
|
|
20815
20871
|
},
|
|
20872
|
+
{
|
|
20873
|
+
name: 'E Canna Mainnet',
|
|
20874
|
+
chain: 'ECNA',
|
|
20875
|
+
rpc: [ 'https://rpc.ecnascan.com' ],
|
|
20876
|
+
faucets: [],
|
|
20877
|
+
nativeCurrency: { name: 'E Canna', symbol: 'ECNA', decimals: 18 },
|
|
20878
|
+
features: [ { name: 'EIP155' } ],
|
|
20879
|
+
infoURL: 'https://ecnascan.com',
|
|
20880
|
+
shortName: 'ecna',
|
|
20881
|
+
chainId: 4111,
|
|
20882
|
+
networkId: 4111,
|
|
20883
|
+
explorers: [
|
|
20884
|
+
{
|
|
20885
|
+
name: 'ecnascan',
|
|
20886
|
+
url: 'https://explorer.ecnascan.com',
|
|
20887
|
+
standard: 'EIP3091'
|
|
20888
|
+
}
|
|
20889
|
+
]
|
|
20890
|
+
},
|
|
20891
|
+
{
|
|
20892
|
+
name: 'E Canna Testnet',
|
|
20893
|
+
title: 'E Canna Testnet',
|
|
20894
|
+
chain: 'tECNA',
|
|
20895
|
+
rpc: [ 'https://testnetrpc.ecnascan.com' ],
|
|
20896
|
+
faucets: [ 'https://testnetexplorer.ecnascan.com/faucet' ],
|
|
20897
|
+
nativeCurrency: { name: 'E Canna Testnet', symbol: 'tECNA', decimals: 18 },
|
|
20898
|
+
features: [ { name: 'EIP155' } ],
|
|
20899
|
+
infoURL: 'https://ecnascan.com',
|
|
20900
|
+
shortName: 'tecna',
|
|
20901
|
+
chainId: 4112,
|
|
20902
|
+
networkId: 4112,
|
|
20903
|
+
slip44: 1,
|
|
20904
|
+
explorers: [
|
|
20905
|
+
{
|
|
20906
|
+
name: 'ecnascan-testnet',
|
|
20907
|
+
url: 'https://testnetexplorer.ecnascan.com',
|
|
20908
|
+
standard: 'EIP3091'
|
|
20909
|
+
}
|
|
20910
|
+
]
|
|
20911
|
+
},
|
|
20816
20912
|
{
|
|
20817
20913
|
name: 'Citrea Mainnet',
|
|
20818
20914
|
chain: 'Citrea',
|
|
@@ -21706,7 +21802,10 @@ const chainArray = [
|
|
|
21706
21802
|
{
|
|
21707
21803
|
name: 'Robinhood Chain',
|
|
21708
21804
|
chain: 'ETH',
|
|
21709
|
-
rpc: [
|
|
21805
|
+
rpc: [
|
|
21806
|
+
'https://rpc.mainnet.chain.robinhood.com',
|
|
21807
|
+
'https://rpc.arrowrpc.com'
|
|
21808
|
+
],
|
|
21710
21809
|
faucets: [],
|
|
21711
21810
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
21712
21811
|
infoURL: 'https://docs.robinhood.com/chain',
|
|
@@ -21719,6 +21818,11 @@ const chainArray = [
|
|
|
21719
21818
|
url: 'https://robinhoodchain.blockscout.com',
|
|
21720
21819
|
icon: 'blockscout',
|
|
21721
21820
|
standard: 'EIP3091'
|
|
21821
|
+
},
|
|
21822
|
+
{
|
|
21823
|
+
name: 'HoodScan',
|
|
21824
|
+
url: 'https://hoodscan.ai',
|
|
21825
|
+
standard: 'EIP3091'
|
|
21722
21826
|
}
|
|
21723
21827
|
],
|
|
21724
21828
|
status: 'active',
|
|
@@ -24974,14 +25078,11 @@ const chainArray = [
|
|
|
24974
25078
|
]
|
|
24975
25079
|
},
|
|
24976
25080
|
{
|
|
24977
|
-
name: 'Rome
|
|
25081
|
+
name: 'Rome Rubicon Mainnet',
|
|
24978
25082
|
chain: 'ROME',
|
|
24979
|
-
rpc: [
|
|
24980
|
-
|
|
24981
|
-
|
|
24982
|
-
],
|
|
24983
|
-
faucets: [],
|
|
24984
|
-
nativeCurrency: { name: 'RSOL', symbol: 'RSOL', decimals: 18 },
|
|
25083
|
+
rpc: [ 'https://rubicon.mainnet.romeprotocol.xyz' ],
|
|
25084
|
+
faucets: [ 'https://app.mainnet.romeprotocol.xyz' ],
|
|
25085
|
+
nativeCurrency: { name: 'USDC', symbol: 'USDC', decimals: 18 },
|
|
24985
25086
|
infoURL: 'https://rome.builders',
|
|
24986
25087
|
shortName: 'rome-palatine',
|
|
24987
25088
|
chainId: 7531,
|
|
@@ -24989,34 +25090,25 @@ const chainArray = [
|
|
|
24989
25090
|
icon: 'rome',
|
|
24990
25091
|
explorers: [
|
|
24991
25092
|
{
|
|
24992
|
-
name: 'Rome
|
|
24993
|
-
url: 'https://
|
|
25093
|
+
name: 'Rome Via Rubicon',
|
|
25094
|
+
url: 'https://via-rubicon.mainnet.romeprotocol.xyz',
|
|
24994
25095
|
icon: 'rome',
|
|
24995
25096
|
standard: 'EIP3091'
|
|
24996
25097
|
}
|
|
24997
|
-
]
|
|
24998
|
-
status: 'active'
|
|
25098
|
+
]
|
|
24999
25099
|
},
|
|
25000
25100
|
{
|
|
25001
25101
|
name: 'Rome Mainnet 0 Aventine',
|
|
25002
25102
|
chain: 'ROME',
|
|
25003
|
-
rpc: [
|
|
25004
|
-
faucets: [
|
|
25005
|
-
nativeCurrency: { name: '
|
|
25103
|
+
rpc: [],
|
|
25104
|
+
faucets: [],
|
|
25105
|
+
nativeCurrency: { name: 'USDC', symbol: 'USDC', decimals: 18 },
|
|
25006
25106
|
infoURL: 'https://rome.builders',
|
|
25007
25107
|
shortName: 'rome-mainnet-0-aventine',
|
|
25008
25108
|
chainId: 7532,
|
|
25009
25109
|
networkId: 7532,
|
|
25010
25110
|
icon: 'rome',
|
|
25011
|
-
|
|
25012
|
-
{
|
|
25013
|
-
name: 'Rome Mainnet 0 Aventine Explorer',
|
|
25014
|
-
url: 'https://romescout-aventine-i.mainnet-0.romeprotocol.xyz',
|
|
25015
|
-
icon: 'rome',
|
|
25016
|
-
standard: 'EIP3091'
|
|
25017
|
-
}
|
|
25018
|
-
],
|
|
25019
|
-
status: 'active'
|
|
25111
|
+
status: 'deprecated'
|
|
25020
25112
|
},
|
|
25021
25113
|
{
|
|
25022
25114
|
name: 'Cyber Mainnet',
|
|
@@ -34598,6 +34690,26 @@ const chainArray = [
|
|
|
34598
34690
|
}
|
|
34599
34691
|
]
|
|
34600
34692
|
},
|
|
34693
|
+
{
|
|
34694
|
+
name: 'Morph Tachyon Testnet',
|
|
34695
|
+
title: 'Morph Tachyon Testnet',
|
|
34696
|
+
chain: 'Morph Tachyon',
|
|
34697
|
+
rpc: [ 'https://testnet-api.popdex.xyz/api/v1/web3/rpc' ],
|
|
34698
|
+
faucets: [],
|
|
34699
|
+
nativeCurrency: { name: 'BGB', symbol: 'BGB', decimals: 18 },
|
|
34700
|
+
features: [ { name: 'EIP155' } ],
|
|
34701
|
+
infoURL: 'https://popdex.xyz',
|
|
34702
|
+
shortName: 'morphtachyontestnet',
|
|
34703
|
+
chainId: 34952,
|
|
34704
|
+
networkId: 34952,
|
|
34705
|
+
explorers: [
|
|
34706
|
+
{
|
|
34707
|
+
name: 'Morph Tachyon Testnet Explorer',
|
|
34708
|
+
url: 'https://testnet-app.popdex.xyz/explorer',
|
|
34709
|
+
standard: 'none'
|
|
34710
|
+
}
|
|
34711
|
+
]
|
|
34712
|
+
},
|
|
34601
34713
|
{
|
|
34602
34714
|
name: 'J2O Taro',
|
|
34603
34715
|
chain: 'TARO',
|
|
@@ -42625,23 +42737,15 @@ const chainArray = [
|
|
|
42625
42737
|
{
|
|
42626
42738
|
name: 'Rome Testnet Caelian',
|
|
42627
42739
|
chain: 'ROME',
|
|
42628
|
-
rpc: [
|
|
42629
|
-
faucets: [
|
|
42630
|
-
nativeCurrency: { name: '
|
|
42740
|
+
rpc: [],
|
|
42741
|
+
faucets: [],
|
|
42742
|
+
nativeCurrency: { name: 'USDC', symbol: 'USDC', decimals: 18 },
|
|
42631
42743
|
infoURL: 'https://rome.builders',
|
|
42632
42744
|
shortName: 'rome-testnet-caelian',
|
|
42633
42745
|
chainId: 121215,
|
|
42634
42746
|
networkId: 121215,
|
|
42635
42747
|
icon: 'rome',
|
|
42636
|
-
|
|
42637
|
-
{
|
|
42638
|
-
name: 'Rome Testnet Caelian Explorer',
|
|
42639
|
-
url: 'https://romescout-caelian-i.testnet.romeprotocol.xyz',
|
|
42640
|
-
icon: 'rome',
|
|
42641
|
-
standard: 'EIP3091'
|
|
42642
|
-
}
|
|
42643
|
-
],
|
|
42644
|
-
status: 'active'
|
|
42748
|
+
status: 'deprecated'
|
|
42645
42749
|
},
|
|
42646
42750
|
{
|
|
42647
42751
|
name: 'Fushuma',
|
|
@@ -49960,10 +50064,10 @@ const chainArray = [
|
|
|
49960
50064
|
chain: 'eip155-42161',
|
|
49961
50065
|
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
|
49962
50066
|
},
|
|
49963
|
-
shortName: '
|
|
50067
|
+
shortName: 'hpold',
|
|
49964
50068
|
chainId: 6985385,
|
|
49965
50069
|
networkId: 6985385,
|
|
49966
|
-
status: '
|
|
50070
|
+
status: 'deprecated',
|
|
49967
50071
|
explorers: [
|
|
49968
50072
|
{
|
|
49969
50073
|
name: 'Humanity Mainnet explorer',
|
|
@@ -50896,6 +51000,31 @@ const chainArray = [
|
|
|
50896
51000
|
chainId: 13371337,
|
|
50897
51001
|
networkId: 13371337
|
|
50898
51002
|
},
|
|
51003
|
+
{
|
|
51004
|
+
name: 'Humanity',
|
|
51005
|
+
chain: 'Humanity',
|
|
51006
|
+
rpc: [ 'https://humanity-main.g.alchemy.com/public' ],
|
|
51007
|
+
faucets: [],
|
|
51008
|
+
nativeCurrency: { name: 'H', symbol: 'H', decimals: 18 },
|
|
51009
|
+
infoURL: 'https://humanity.org',
|
|
51010
|
+
parent: {
|
|
51011
|
+
type: 'L2',
|
|
51012
|
+
chain: 'eip155-42161',
|
|
51013
|
+
bridges: [ { url: 'https://bridge.humanity.org' } ]
|
|
51014
|
+
},
|
|
51015
|
+
shortName: 'hp',
|
|
51016
|
+
chainId: 13600000,
|
|
51017
|
+
networkId: 13600000,
|
|
51018
|
+
status: 'active',
|
|
51019
|
+
explorers: [
|
|
51020
|
+
{
|
|
51021
|
+
name: 'Humanity Mainnet explorer',
|
|
51022
|
+
url: 'https://humanity-main.explorer.alchemy.com',
|
|
51023
|
+
standard: 'EIP3091'
|
|
51024
|
+
}
|
|
51025
|
+
],
|
|
51026
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
51027
|
+
},
|
|
50899
51028
|
{
|
|
50900
51029
|
name: 'Symbiosis',
|
|
50901
51030
|
chain: 'symbiosis',
|