eth-chainlist 0.0.803 → 0.0.805
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 +109 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.805 (2026-08-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.804 ([90fc293](https://github.com/poowf/eth-chainlist/commit/90fc293cd91f0272290b7f2fec13a8f90363a5f5))
|
|
9
|
+
* update chain data ([5f063ac](https://github.com/poowf/eth-chainlist/commit/5f063acb37a916db8880107e9327164ac6fbddee))
|
|
10
|
+
|
|
11
|
+
### 0.0.804 (2026-08-11)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.803 ([8423d40](https://github.com/poowf/eth-chainlist/commit/8423d40035af45c4a80dde147910f227821d36df))
|
|
17
|
+
* update chain data ([320a5ed](https://github.com/poowf/eth-chainlist/commit/320a5ed3c2d67d97cc82fa2cb82ec853ff481a1d))
|
|
18
|
+
|
|
3
19
|
### 0.0.803 (2026-08-08)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -1209,6 +1209,7 @@ const chainArray = [
|
|
|
1209
1209
|
'https://bsc-dataseed3.ninicoin.io',
|
|
1210
1210
|
'https://bsc-dataseed4.ninicoin.io',
|
|
1211
1211
|
'https://bsc-rpc.publicnode.com',
|
|
1212
|
+
'https://bsc-rpc-public.chainpulse.cc',
|
|
1212
1213
|
'wss://bsc-rpc.publicnode.com',
|
|
1213
1214
|
'wss://bsc-ws-node.nariox.org'
|
|
1214
1215
|
],
|
|
@@ -2067,6 +2068,7 @@ const chainArray = [
|
|
|
2067
2068
|
'https://data-seed-prebsc-1-s3.bnbchain.org:8545',
|
|
2068
2069
|
'https://data-seed-prebsc-2-s3.bnbchain.org:8545',
|
|
2069
2070
|
'https://bsc-testnet-rpc.publicnode.com',
|
|
2071
|
+
'https://bsc-rpc-public.chainpulse.cc/testnet',
|
|
2070
2072
|
'wss://bsc-testnet-rpc.publicnode.com'
|
|
2071
2073
|
],
|
|
2072
2074
|
faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
|
|
@@ -14180,6 +14182,27 @@ const chainArray = [
|
|
|
14180
14182
|
explorers: [],
|
|
14181
14183
|
status: 'deprecated'
|
|
14182
14184
|
},
|
|
14185
|
+
{
|
|
14186
|
+
name: 'Pharos Mainnet',
|
|
14187
|
+
chain: 'Pharos',
|
|
14188
|
+
icon: 'pharos',
|
|
14189
|
+
rpc: [ 'https://rpc.pharos.xyz' ],
|
|
14190
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
14191
|
+
faucets: [],
|
|
14192
|
+
nativeCurrency: { name: 'PharosCoin', symbol: 'PROS', decimals: 18 },
|
|
14193
|
+
infoURL: 'https://pharos.xyz',
|
|
14194
|
+
shortName: 'pharos',
|
|
14195
|
+
chainId: 1672,
|
|
14196
|
+
networkId: 1672,
|
|
14197
|
+
explorers: [
|
|
14198
|
+
{
|
|
14199
|
+
name: 'Pharos Explorer',
|
|
14200
|
+
url: 'https://pharosscan.xyz',
|
|
14201
|
+
icon: 'pharos',
|
|
14202
|
+
standard: 'EIP3091'
|
|
14203
|
+
}
|
|
14204
|
+
]
|
|
14205
|
+
},
|
|
14183
14206
|
{
|
|
14184
14207
|
name: 'Mint Testnet',
|
|
14185
14208
|
chain: 'ETH',
|
|
@@ -20869,6 +20892,46 @@ const chainArray = [
|
|
|
20869
20892
|
}
|
|
20870
20893
|
]
|
|
20871
20894
|
},
|
|
20895
|
+
{
|
|
20896
|
+
name: 'E Canna Mainnet',
|
|
20897
|
+
chain: 'ECNA',
|
|
20898
|
+
rpc: [ 'https://rpc.ecnascan.com' ],
|
|
20899
|
+
faucets: [],
|
|
20900
|
+
nativeCurrency: { name: 'E Canna', symbol: 'ECNA', decimals: 18 },
|
|
20901
|
+
features: [ { name: 'EIP155' } ],
|
|
20902
|
+
infoURL: 'https://ecnascan.com',
|
|
20903
|
+
shortName: 'ecna',
|
|
20904
|
+
chainId: 4111,
|
|
20905
|
+
networkId: 4111,
|
|
20906
|
+
explorers: [
|
|
20907
|
+
{
|
|
20908
|
+
name: 'ecnascan',
|
|
20909
|
+
url: 'https://explorer.ecnascan.com',
|
|
20910
|
+
standard: 'EIP3091'
|
|
20911
|
+
}
|
|
20912
|
+
]
|
|
20913
|
+
},
|
|
20914
|
+
{
|
|
20915
|
+
name: 'E Canna Testnet',
|
|
20916
|
+
title: 'E Canna Testnet',
|
|
20917
|
+
chain: 'tECNA',
|
|
20918
|
+
rpc: [ 'https://testnetrpc.ecnascan.com' ],
|
|
20919
|
+
faucets: [ 'https://testnetexplorer.ecnascan.com/faucet' ],
|
|
20920
|
+
nativeCurrency: { name: 'E Canna Testnet', symbol: 'tECNA', decimals: 18 },
|
|
20921
|
+
features: [ { name: 'EIP155' } ],
|
|
20922
|
+
infoURL: 'https://ecnascan.com',
|
|
20923
|
+
shortName: 'tecna',
|
|
20924
|
+
chainId: 4112,
|
|
20925
|
+
networkId: 4112,
|
|
20926
|
+
slip44: 1,
|
|
20927
|
+
explorers: [
|
|
20928
|
+
{
|
|
20929
|
+
name: 'ecnascan-testnet',
|
|
20930
|
+
url: 'https://testnetexplorer.ecnascan.com',
|
|
20931
|
+
standard: 'EIP3091'
|
|
20932
|
+
}
|
|
20933
|
+
]
|
|
20934
|
+
},
|
|
20872
20935
|
{
|
|
20873
20936
|
name: 'Citrea Mainnet',
|
|
20874
20937
|
chain: 'Citrea',
|
|
@@ -38965,6 +39028,25 @@ const chainArray = [
|
|
|
38965
39028
|
}
|
|
38966
39029
|
]
|
|
38967
39030
|
},
|
|
39031
|
+
{
|
|
39032
|
+
name: 'EAV7 EAVM',
|
|
39033
|
+
chain: 'EAV7',
|
|
39034
|
+
icon: 'eav7',
|
|
39035
|
+
rpc: [ 'https://rpc.eavscan.com' ],
|
|
39036
|
+
faucets: [],
|
|
39037
|
+
nativeCurrency: { name: 'EAV7', symbol: 'EAV7', decimals: 18 },
|
|
39038
|
+
infoURL: 'https://eavscan.com',
|
|
39039
|
+
shortName: 'eav7',
|
|
39040
|
+
chainId: 72020,
|
|
39041
|
+
networkId: 72020,
|
|
39042
|
+
explorers: [
|
|
39043
|
+
{
|
|
39044
|
+
name: 'EAV7 Scan',
|
|
39045
|
+
url: 'https://eavscan.com',
|
|
39046
|
+
standard: 'EIP3091'
|
|
39047
|
+
}
|
|
39048
|
+
]
|
|
39049
|
+
},
|
|
38968
39050
|
{
|
|
38969
39051
|
name: 'Nexera Testnet',
|
|
38970
39052
|
chain: 'Nexera',
|
|
@@ -50024,10 +50106,10 @@ const chainArray = [
|
|
|
50024
50106
|
chain: 'eip155-42161',
|
|
50025
50107
|
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
|
50026
50108
|
},
|
|
50027
|
-
shortName: '
|
|
50109
|
+
shortName: 'hpold',
|
|
50028
50110
|
chainId: 6985385,
|
|
50029
50111
|
networkId: 6985385,
|
|
50030
|
-
status: '
|
|
50112
|
+
status: 'deprecated',
|
|
50031
50113
|
explorers: [
|
|
50032
50114
|
{
|
|
50033
50115
|
name: 'Humanity Mainnet explorer',
|
|
@@ -50960,6 +51042,31 @@ const chainArray = [
|
|
|
50960
51042
|
chainId: 13371337,
|
|
50961
51043
|
networkId: 13371337
|
|
50962
51044
|
},
|
|
51045
|
+
{
|
|
51046
|
+
name: 'Humanity',
|
|
51047
|
+
chain: 'Humanity',
|
|
51048
|
+
rpc: [ 'https://humanity-main.g.alchemy.com/public' ],
|
|
51049
|
+
faucets: [],
|
|
51050
|
+
nativeCurrency: { name: 'H', symbol: 'H', decimals: 18 },
|
|
51051
|
+
infoURL: 'https://humanity.org',
|
|
51052
|
+
parent: {
|
|
51053
|
+
type: 'L2',
|
|
51054
|
+
chain: 'eip155-42161',
|
|
51055
|
+
bridges: [ { url: 'https://bridge.humanity.org' } ]
|
|
51056
|
+
},
|
|
51057
|
+
shortName: 'hp',
|
|
51058
|
+
chainId: 13600000,
|
|
51059
|
+
networkId: 13600000,
|
|
51060
|
+
status: 'active',
|
|
51061
|
+
explorers: [
|
|
51062
|
+
{
|
|
51063
|
+
name: 'Humanity Mainnet explorer',
|
|
51064
|
+
url: 'https://humanity-main.explorer.alchemy.com',
|
|
51065
|
+
standard: 'EIP3091'
|
|
51066
|
+
}
|
|
51067
|
+
],
|
|
51068
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
51069
|
+
},
|
|
50963
51070
|
{
|
|
50964
51071
|
name: 'Symbiosis',
|
|
50965
51072
|
chain: 'symbiosis',
|