eth-chainlist 0.0.128 → 0.0.129
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 +27 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.129 (2023-04-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.128 ([9352f9a](https://github.com/poowf/eth-chainlist/commit/9352f9adc5c49880fc6f831d3c81ace259f2b1e1))
|
9
|
+
* update chain data ([273a1fe](https://github.com/poowf/eth-chainlist/commit/273a1fed0b2d8ec4bfd036bb98b26666117c0a28))
|
10
|
+
|
3
11
|
### 0.0.128 (2023-04-16)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -12358,6 +12358,17 @@ const chainArray = [
|
|
12358
12358
|
}
|
12359
12359
|
]
|
12360
12360
|
},
|
12361
|
+
{
|
12362
|
+
name: 'Cosmic Chain',
|
12363
|
+
chain: 'COSMIC',
|
12364
|
+
rpc: [ 'http://testnet.cosmicchain.site:3344' ],
|
12365
|
+
faucets: [],
|
12366
|
+
nativeCurrency: { name: 'Cosmic Chain', symbol: 'COSMIC', decimals: 18 },
|
12367
|
+
infoURL: 'https://cosmicchain.site',
|
12368
|
+
shortName: 'Cosmic',
|
12369
|
+
chainId: 67588,
|
12370
|
+
networkId: 3344
|
12371
|
+
},
|
12361
12372
|
{
|
12362
12373
|
name: 'Condrieu',
|
12363
12374
|
title: 'Ethereum Verkle Testnet Condrieu',
|
@@ -15358,6 +15369,22 @@ const chainArray = [
|
|
15358
15369
|
}
|
15359
15370
|
]
|
15360
15371
|
},
|
15372
|
+
{
|
15373
|
+
name: 'Kanazawa',
|
15374
|
+
title: 'Meld Testnet Kanazawa',
|
15375
|
+
chain: 'MELD',
|
15376
|
+
rpc: [
|
15377
|
+
'https://rpc-kanazawa.meldlabs.dev/ext/bc/2Ci7VYrUd4fTBqGA5D2HA6UPHzQ4LQyr8rZQww9MGSv9rNkRzn/rpc'
|
15378
|
+
],
|
15379
|
+
faucets: [],
|
15380
|
+
features: [],
|
15381
|
+
nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
|
15382
|
+
infoURL: 'https://meld.com',
|
15383
|
+
shortName: 'meld',
|
15384
|
+
chainId: 222000222,
|
15385
|
+
networkId: 222000222,
|
15386
|
+
explorers: []
|
15387
|
+
},
|
15361
15388
|
{
|
15362
15389
|
name: 'Neon EVM DevNet',
|
15363
15390
|
chain: 'Solana',
|