eth-chainlist 0.0.251 → 0.0.252
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 +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.252 (2023-10-07)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.251 ([e243f9b](https://github.com/poowf/eth-chainlist/commit/e243f9b5c8075240812bf2acf15ab3b449debab7))
|
9
|
+
* update chain data ([e1968aa](https://github.com/poowf/eth-chainlist/commit/e1968aab10fcfdff237bb71016c5e7d88e78fa70))
|
10
|
+
|
3
11
|
### 0.0.251 (2023-10-06)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -273,11 +273,12 @@ const chainArray = [
|
|
273
273
|
icon: 'flare',
|
274
274
|
rpc: [
|
275
275
|
'https://flare-api.flare.network/ext/C/rpc',
|
276
|
+
'https://flare.public-rpc.com',
|
276
277
|
'https://rpc.ftso.au/flare'
|
277
278
|
],
|
278
279
|
faucets: [],
|
279
280
|
nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 },
|
280
|
-
infoURL: 'https://flare.
|
281
|
+
infoURL: 'https://flare.network',
|
281
282
|
shortName: 'flr',
|
282
283
|
chainId: 14,
|
283
284
|
networkId: 14,
|
@@ -286,6 +287,11 @@ const chainArray = [
|
|
286
287
|
name: 'blockscout',
|
287
288
|
url: 'https://flare-explorer.flare.network',
|
288
289
|
standard: 'EIP3091'
|
290
|
+
},
|
291
|
+
{
|
292
|
+
name: 'flarescan',
|
293
|
+
url: 'https://flarescan.com',
|
294
|
+
standard: 'EIP3091'
|
289
295
|
}
|
290
296
|
]
|
291
297
|
},
|