eth-chainlist 0.0.832 → 0.0.833
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 +16 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.833 (2026-09-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.832 ([017fed2](https://github.com/poowf/eth-chainlist/commit/017fed24ced4240cce65f32697ccf65eb7ee3990))
|
|
9
|
+
* update chain data ([2c48ddb](https://github.com/poowf/eth-chainlist/commit/2c48ddbec255bae61419b9503a660b400fc3f107))
|
|
10
|
+
|
|
3
11
|
### 0.0.832 (2026-09-10)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -288,7 +288,14 @@ const chainArray = [
|
|
|
288
288
|
shortName: 'meta',
|
|
289
289
|
chainId: 11,
|
|
290
290
|
networkId: 11,
|
|
291
|
-
slip44: 916
|
|
291
|
+
slip44: 916,
|
|
292
|
+
explorers: [
|
|
293
|
+
{
|
|
294
|
+
name: 'Metadium Explorer',
|
|
295
|
+
url: 'https://explorer.metadium.com',
|
|
296
|
+
standard: 'EIP3091'
|
|
297
|
+
}
|
|
298
|
+
]
|
|
292
299
|
},
|
|
293
300
|
{
|
|
294
301
|
name: 'Metadium Testnet',
|
|
@@ -300,7 +307,14 @@ const chainArray = [
|
|
|
300
307
|
shortName: 'kal',
|
|
301
308
|
chainId: 12,
|
|
302
309
|
networkId: 12,
|
|
303
|
-
slip44: 1
|
|
310
|
+
slip44: 1,
|
|
311
|
+
explorers: [
|
|
312
|
+
{
|
|
313
|
+
name: 'Metadium Testnet Explorer',
|
|
314
|
+
url: 'https://testnetexplorer.metadium.com',
|
|
315
|
+
standard: 'EIP3091'
|
|
316
|
+
}
|
|
317
|
+
]
|
|
304
318
|
},
|
|
305
319
|
{
|
|
306
320
|
name: 'Diode Testnet Staging',
|