eth-chainlist 0.0.96 → 0.0.98
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 +23 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.98 (2023-03-11)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.97 ([053fa54](https://github.com/poowf/eth-chainlist/commit/053fa54154e616140cc53e66f008e741afbc9efa))
|
9
|
+
* update chain data ([402496b](https://github.com/poowf/eth-chainlist/commit/402496b13e5b816df187445a1cf81fe9bce5f3fc))
|
10
|
+
|
11
|
+
### 0.0.97 (2023-03-10)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.96 ([6103f43](https://github.com/poowf/eth-chainlist/commit/6103f4370f994816770e991229790eb4b9b33750))
|
17
|
+
* update chain data ([bc0ddae](https://github.com/poowf/eth-chainlist/commit/bc0ddae0e290a6c4fabd7cfecdcad3c16c3692f0))
|
18
|
+
|
3
19
|
### 0.0.96 (2023-03-09)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -416,7 +416,7 @@ const chainArray = [
|
|
416
416
|
{
|
417
417
|
name: 'Cronos Mainnet Beta',
|
418
418
|
chain: 'CRO',
|
419
|
-
rpc: [ 'https://evm.cronos.org' ],
|
419
|
+
rpc: [ 'https://evm.cronos.org', 'https://cronos-evm.publicnode.com' ],
|
420
420
|
features: [ { name: 'EIP1559' } ],
|
421
421
|
faucets: [],
|
422
422
|
nativeCurrency: { name: 'Cronos', symbol: 'CRO', decimals: 18 },
|
@@ -2212,6 +2212,26 @@ const chainArray = [
|
|
2212
2212
|
}
|
2213
2213
|
]
|
2214
2214
|
},
|
2215
|
+
{
|
2216
|
+
name: 'iExec Sidechain',
|
2217
|
+
chain: 'Bellecour',
|
2218
|
+
icon: 'rlc',
|
2219
|
+
rpc: [ 'https://bellecour.iex.ec' ],
|
2220
|
+
faucets: [],
|
2221
|
+
nativeCurrency: { name: 'xRLC', symbol: 'xRLC', decimals: 18 },
|
2222
|
+
infoURL: 'https://iex.ec',
|
2223
|
+
shortName: 'rlc',
|
2224
|
+
chainId: 134,
|
2225
|
+
networkId: 134,
|
2226
|
+
explorers: [
|
2227
|
+
{
|
2228
|
+
name: 'blockscout',
|
2229
|
+
url: 'https://blockscout.bellecour.iex.ec',
|
2230
|
+
icon: 'blockscout',
|
2231
|
+
standard: 'EIP3091'
|
2232
|
+
}
|
2233
|
+
]
|
2234
|
+
},
|
2215
2235
|
{
|
2216
2236
|
name: 'Alyx Chain Testnet',
|
2217
2237
|
chain: 'Alyx Chain Testnet',
|
@@ -5604,7 +5624,7 @@ const chainArray = [
|
|
5604
5624
|
name: 'Elysium Mainnet',
|
5605
5625
|
title: 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged',
|
5606
5626
|
chain: 'Elysium',
|
5607
|
-
rpc: [ 'https://
|
5627
|
+
rpc: [ 'https://rpc.elysiumchain.tech/' ],
|
5608
5628
|
faucets: [],
|
5609
5629
|
nativeCurrency: { name: 'LAVA', symbol: 'LAVA', decimals: 18 },
|
5610
5630
|
infoURL: 'https://elysiumscan.vulcanforged.com',
|
@@ -8789,7 +8809,7 @@ const chainArray = [
|
|
8789
8809
|
{
|
8790
8810
|
name: 'TMY Chain',
|
8791
8811
|
chain: 'TMY',
|
8792
|
-
icon: '
|
8812
|
+
icon: 'tmychain',
|
8793
8813
|
rpc: [ 'https://node1.tmyblockchain.org/rpc' ],
|
8794
8814
|
faucets: [ 'https://faucet.tmychain.org/' ],
|
8795
8815
|
nativeCurrency: { name: 'TMY', symbol: 'TMY', decimals: 18 },
|