eth-chainlist 0.0.173 → 0.0.175
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 +56 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.175 (2023-06-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.174 ([048bc30](https://github.com/poowf/eth-chainlist/commit/048bc304d5bd43d6156bde804fd852446bf8849e))
|
9
|
+
* update chain data ([6f4279d](https://github.com/poowf/eth-chainlist/commit/6f4279d2d18a8c1c967870530f3325e1299f6bf3))
|
10
|
+
|
11
|
+
### 0.0.174 (2023-06-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.173 ([5644e64](https://github.com/poowf/eth-chainlist/commit/5644e64737b555b6c190e6339ad375555fa8c74a))
|
17
|
+
* update chain data ([5d4e6b5](https://github.com/poowf/eth-chainlist/commit/5d4e6b54424097bf42776584ccf899db721a98ee))
|
18
|
+
|
3
19
|
### 0.0.173 (2023-06-24)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -181,7 +181,7 @@ const chainArray = [
|
|
181
181
|
networkId: 2
|
182
182
|
},
|
183
183
|
{
|
184
|
-
name: '
|
184
|
+
name: 'OP Mainnet',
|
185
185
|
chain: 'ETH',
|
186
186
|
rpc: [ 'https://mainnet.optimism.io/' ],
|
187
187
|
faucets: [],
|
@@ -1115,7 +1115,7 @@ const chainArray = [
|
|
1115
1115
|
{
|
1116
1116
|
name: 'Ethereum Classic Mainnet',
|
1117
1117
|
chain: 'ETC',
|
1118
|
-
rpc: [ 'https://
|
1118
|
+
rpc: [ 'https://etc.rivet.link' ],
|
1119
1119
|
faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/?' ],
|
1120
1120
|
nativeCurrency: { name: 'Ethereum Classic Ether', symbol: 'ETC', decimals: 18 },
|
1121
1121
|
infoURL: 'https://ethereumclassic.org',
|
@@ -1149,7 +1149,7 @@ const chainArray = [
|
|
1149
1149
|
{
|
1150
1150
|
name: 'Ethereum Classic Testnet Mordor',
|
1151
1151
|
chain: 'ETC',
|
1152
|
-
rpc: [ 'https://
|
1152
|
+
rpc: [ 'https://rpc.mordor.etccooperative.org' ],
|
1153
1153
|
faucets: [],
|
1154
1154
|
nativeCurrency: {
|
1155
1155
|
name: 'Mordor Classic Testnet Ether',
|
@@ -4240,7 +4240,11 @@ const chainArray = [
|
|
4240
4240
|
{
|
4241
4241
|
name: 'Rollux Mainnet',
|
4242
4242
|
chain: 'SYS',
|
4243
|
-
rpc: [
|
4243
|
+
rpc: [
|
4244
|
+
'https://rpc.rollux.com',
|
4245
|
+
'wss://rpc.rollux.com/wss',
|
4246
|
+
'https://rpc.ankr.com/rollux/${ANKR_API_KEY}'
|
4247
|
+
],
|
4244
4248
|
faucets: [ 'https://rollux.id/faucetapp' ],
|
4245
4249
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
4246
4250
|
infoURL: 'https://rollux.com',
|
@@ -6794,26 +6798,19 @@ const chainArray = [
|
|
6794
6798
|
networkId: 1657
|
6795
6799
|
},
|
6796
6800
|
{
|
6797
|
-
name: 'Horizen Yuma Testnet',
|
6801
|
+
name: 'Horizen Yuma Testnet Deprecated',
|
6798
6802
|
shortName: 'Yuma',
|
6799
6803
|
chain: 'Yuma',
|
6800
6804
|
icon: 'eon',
|
6801
|
-
rpc: [
|
6805
|
+
rpc: [],
|
6802
6806
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6803
|
-
faucets: [
|
6807
|
+
faucets: [],
|
6804
6808
|
nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
|
6805
6809
|
infoURL: 'https://horizen.io/',
|
6806
6810
|
chainId: 1662,
|
6807
6811
|
networkId: 1662,
|
6808
6812
|
slip44: 121,
|
6809
|
-
explorers: [
|
6810
|
-
{
|
6811
|
-
name: 'Yuma Testnet Block Explorer',
|
6812
|
-
url: 'https://yuma-explorer.horizen.io',
|
6813
|
-
icon: 'eon',
|
6814
|
-
standard: 'EIP3091'
|
6815
|
-
}
|
6816
|
-
],
|
6813
|
+
explorers: [],
|
6817
6814
|
status: 'deprecated'
|
6818
6815
|
},
|
6819
6816
|
{
|
@@ -8964,6 +8961,26 @@ const chainArray = [
|
|
8964
8961
|
}
|
8965
8962
|
]
|
8966
8963
|
},
|
8964
|
+
{
|
8965
|
+
name: 'Peperium Chain Testnet',
|
8966
|
+
chain: 'PERIUM',
|
8967
|
+
rpc: [ 'https://rpc-testnet.peperium.io' ],
|
8968
|
+
faucets: [],
|
8969
|
+
nativeCurrency: { name: 'Peperium Chain Testnet', symbol: 'PERIUM', decimals: 18 },
|
8970
|
+
infoURL: 'https://peperium.io',
|
8971
|
+
shortName: 'PERIUM',
|
8972
|
+
chainId: 4001,
|
8973
|
+
networkId: 4001,
|
8974
|
+
icon: 'peperium',
|
8975
|
+
explorers: [
|
8976
|
+
{
|
8977
|
+
name: 'Peperium Chain Explorer',
|
8978
|
+
url: 'https://scan-testnet.peperium.io',
|
8979
|
+
icon: 'peperium',
|
8980
|
+
standard: 'EIP3091'
|
8981
|
+
}
|
8982
|
+
]
|
8983
|
+
},
|
8967
8984
|
{
|
8968
8985
|
name: 'Fantom Testnet',
|
8969
8986
|
chain: 'FTM',
|
@@ -16815,6 +16832,30 @@ const chainArray = [
|
|
16815
16832
|
chainId: 20181205,
|
16816
16833
|
networkId: 20181205
|
16817
16834
|
},
|
16835
|
+
{
|
16836
|
+
name: 'Pego Network',
|
16837
|
+
chain: 'PEGO',
|
16838
|
+
rpc: [
|
16839
|
+
'https://pegorpc.com',
|
16840
|
+
'https://node1.pegorpc.com',
|
16841
|
+
'https://node2.pegorpc.com',
|
16842
|
+
'https://node3.pegorpc.com'
|
16843
|
+
],
|
16844
|
+
faucets: [],
|
16845
|
+
nativeCurrency: { name: 'Pego Native Token', symbol: 'PG', decimals: 18 },
|
16846
|
+
infoURL: 'https://pego.network',
|
16847
|
+
shortName: 'pg',
|
16848
|
+
chainId: 20201022,
|
16849
|
+
networkId: 20201022,
|
16850
|
+
icon: 'pego',
|
16851
|
+
explorers: [
|
16852
|
+
{
|
16853
|
+
name: 'Pego Network Explorer',
|
16854
|
+
url: 'https://scan.pego.network',
|
16855
|
+
standard: 'EIP3091'
|
16856
|
+
}
|
16857
|
+
]
|
16858
|
+
},
|
16818
16859
|
{
|
16819
16860
|
name: 'Excelon Mainnet',
|
16820
16861
|
chain: 'XLON',
|