eth-chainlist 0.0.172 → 0.0.174
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 +28 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.174 (2023-06-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.173 ([5644e64](https://github.com/poowf/eth-chainlist/commit/5644e64737b555b6c190e6339ad375555fa8c74a))
|
9
|
+
* update chain data ([5d4e6b5](https://github.com/poowf/eth-chainlist/commit/5d4e6b54424097bf42776584ccf899db721a98ee))
|
10
|
+
|
11
|
+
### 0.0.173 (2023-06-24)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.172 ([3abd06b](https://github.com/poowf/eth-chainlist/commit/3abd06b313222189668e8c76a2d86fc6b0ab1dd1))
|
17
|
+
* update chain data ([e015558](https://github.com/poowf/eth-chainlist/commit/e015558bf026a6cf6bf13b0cdb434b553453fd30))
|
18
|
+
|
3
19
|
### 0.0.172 (2023-06-22)
|
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: [],
|
@@ -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',
|
@@ -6813,7 +6817,8 @@ const chainArray = [
|
|
6813
6817
|
icon: 'eon',
|
6814
6818
|
standard: 'EIP3091'
|
6815
6819
|
}
|
6816
|
-
]
|
6820
|
+
],
|
6821
|
+
status: 'deprecated'
|
6817
6822
|
},
|
6818
6823
|
{
|
6819
6824
|
name: 'Horizen Gobi Testnet',
|
@@ -8963,6 +8968,26 @@ const chainArray = [
|
|
8963
8968
|
}
|
8964
8969
|
]
|
8965
8970
|
},
|
8971
|
+
{
|
8972
|
+
name: 'Peperium Chain Testnet',
|
8973
|
+
chain: 'PERIUM',
|
8974
|
+
rpc: [ 'https://rpc-testnet.peperium.io' ],
|
8975
|
+
faucets: [],
|
8976
|
+
nativeCurrency: { name: 'Peperium Chain Testnet', symbol: 'PERIUM', decimals: 18 },
|
8977
|
+
infoURL: 'https://peperium.io',
|
8978
|
+
shortName: 'PERIUM',
|
8979
|
+
chainId: 4001,
|
8980
|
+
networkId: 4001,
|
8981
|
+
icon: 'peperium',
|
8982
|
+
explorers: [
|
8983
|
+
{
|
8984
|
+
name: 'Peperium Chain Explorer',
|
8985
|
+
url: 'https://scan-testnet.peperium.io',
|
8986
|
+
icon: 'peperium',
|
8987
|
+
standard: 'EIP3091'
|
8988
|
+
}
|
8989
|
+
]
|
8990
|
+
},
|
8966
8991
|
{
|
8967
8992
|
name: 'Fantom Testnet',
|
8968
8993
|
chain: 'FTM',
|