eth-chainlist 0.0.127 → 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 CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ### 0.0.128 (2023-04-16)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.127 ([ea7eda8](https://github.com/poowf/eth-chainlist/commit/ea7eda8bcb0f14ccf1f1aa8be4f560b9b97c7a29))
17
+ * update chain data ([29b8840](https://github.com/poowf/eth-chainlist/commit/29b884029140cd693e20f405acb94bd7cc6bc26f))
18
+
3
19
  ### 0.0.127 (2023-04-15)
4
20
 
5
21
 
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',
@@ -15888,6 +15915,7 @@ const chainArray = [
15888
15915
  {
15889
15916
  name: 'Palm Testnet',
15890
15917
  chain: 'Palm',
15918
+ icon: 'palm',
15891
15919
  rpc: [ 'https://palm-testnet.infura.io/v3/${INFURA_API_KEY}' ],
15892
15920
  faucets: [],
15893
15921
  nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 },
@@ -15906,6 +15934,7 @@ const chainArray = [
15906
15934
  {
15907
15935
  name: 'Palm',
15908
15936
  chain: 'Palm',
15937
+ icon: 'palm',
15909
15938
  rpc: [ 'https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}' ],
15910
15939
  faucets: [],
15911
15940
  nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.127",
3
+ "version": "0.0.129",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {