eth-chainlist 0.0.241 → 0.0.242
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 +25 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.242 (2023-09-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.241 ([bb01aae](https://github.com/poowf/eth-chainlist/commit/bb01aae7f39b22e829f6329153c8057357e3e7d8))
|
9
|
+
* update chain data ([4b74c88](https://github.com/poowf/eth-chainlist/commit/4b74c8834990f3d8c97940d2ffd3445343f1ffaf))
|
10
|
+
|
3
11
|
### 0.0.241 (2023-09-25)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -270,7 +270,10 @@ const chainArray = [
|
|
270
270
|
name: 'Flare Mainnet',
|
271
271
|
chain: 'FLR',
|
272
272
|
icon: 'flare',
|
273
|
-
rpc: [
|
273
|
+
rpc: [
|
274
|
+
'https://flare-api.flare.network/ext/C/rpc',
|
275
|
+
'https://rpc.ftso.au/flare'
|
276
|
+
],
|
274
277
|
faucets: [],
|
275
278
|
nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 },
|
276
279
|
infoURL: 'https://flare.xyz',
|
@@ -2661,6 +2664,27 @@ const chainArray = [
|
|
2661
2664
|
}
|
2662
2665
|
]
|
2663
2666
|
},
|
2667
|
+
{
|
2668
|
+
name: 'ShimmerEVM Mainnet',
|
2669
|
+
title: 'ShimmerEVM Mainnet',
|
2670
|
+
chain: 'ShimmerEVM',
|
2671
|
+
rpc: [ 'https://json-rpc.evm.shimmer.network' ],
|
2672
|
+
faucets: [],
|
2673
|
+
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 18 },
|
2674
|
+
infoURL: 'https://shimmer.network',
|
2675
|
+
shortName: 'shimmerevm-mainnet',
|
2676
|
+
chainId: 148,
|
2677
|
+
networkId: 148,
|
2678
|
+
icon: 'shimmerevm',
|
2679
|
+
explorers: [
|
2680
|
+
{
|
2681
|
+
name: 'explorer',
|
2682
|
+
url: 'https://explorer.evm.shimmer.network',
|
2683
|
+
icon: 'shimmerevm',
|
2684
|
+
standard: 'EIP3091'
|
2685
|
+
}
|
2686
|
+
]
|
2687
|
+
},
|
2664
2688
|
{
|
2665
2689
|
name: 'Six Protocol Testnet',
|
2666
2690
|
chain: 'FIVENET',
|