eth-chainlist 0.0.173 → 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 +8 -0
- package/data/chain.js +26 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.173 (2023-06-24)
|
4
12
|
|
5
13
|
|
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',
|
@@ -8964,6 +8968,26 @@ const chainArray = [
|
|
8964
8968
|
}
|
8965
8969
|
]
|
8966
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
|
+
},
|
8967
8991
|
{
|
8968
8992
|
name: 'Fantom Testnet',
|
8969
8993
|
chain: 'FTM',
|