eth-chainlist 0.0.128 → 0.0.130

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.130 (2023-04-18)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.129 ([c5b8882](https://github.com/poowf/eth-chainlist/commit/c5b8882c4d3b0ffe7b27a4f905bcca5d4e0d3f98))
9
+ * update chain data ([5b7503d](https://github.com/poowf/eth-chainlist/commit/5b7503d14e5942386930efe2c24f4c54e4dde33a))
10
+
11
+ ### 0.0.129 (2023-04-17)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.128 ([9352f9a](https://github.com/poowf/eth-chainlist/commit/9352f9adc5c49880fc6f831d3c81ace259f2b1e1))
17
+ * update chain data ([273a1fe](https://github.com/poowf/eth-chainlist/commit/273a1fed0b2d8ec4bfd036bb98b26666117c0a28))
18
+
3
19
  ### 0.0.128 (2023-04-16)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -2431,7 +2431,8 @@ const chainArray = [
2431
2431
  {
2432
2432
  name: 'OEBlock Testnet',
2433
2433
  chain: 'OEBt',
2434
- rpc: [ 'https://testnet-rpc.oeblock.com/' ],
2434
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
2435
+ rpc: [ 'https://testnet-rpc.oeblock.com' ],
2435
2436
  faucets: [],
2436
2437
  nativeCurrency: { name: 'OEBlock', symbol: 'OEB', decimals: 18 },
2437
2438
  infoURL: 'https://www.oeblock.com/',
@@ -12358,6 +12359,17 @@ const chainArray = [
12358
12359
  }
12359
12360
  ]
12360
12361
  },
12362
+ {
12363
+ name: 'Cosmic Chain',
12364
+ chain: 'COSMIC',
12365
+ rpc: [ 'http://testnet.cosmicchain.site:3344' ],
12366
+ faucets: [],
12367
+ nativeCurrency: { name: 'Cosmic Chain', symbol: 'COSMIC', decimals: 18 },
12368
+ infoURL: 'https://cosmicchain.site',
12369
+ shortName: 'Cosmic',
12370
+ chainId: 67588,
12371
+ networkId: 3344
12372
+ },
12361
12373
  {
12362
12374
  name: 'Condrieu',
12363
12375
  title: 'Ethereum Verkle Testnet Condrieu',
@@ -15358,6 +15370,22 @@ const chainArray = [
15358
15370
  }
15359
15371
  ]
15360
15372
  },
15373
+ {
15374
+ name: 'Kanazawa',
15375
+ title: 'Meld Testnet Kanazawa',
15376
+ chain: 'MELD',
15377
+ rpc: [
15378
+ 'https://rpc-kanazawa.meldlabs.dev/ext/bc/2Ci7VYrUd4fTBqGA5D2HA6UPHzQ4LQyr8rZQww9MGSv9rNkRzn/rpc'
15379
+ ],
15380
+ faucets: [],
15381
+ features: [],
15382
+ nativeCurrency: { name: 'gMeld', symbol: 'gMELD', decimals: 18 },
15383
+ infoURL: 'https://meld.com',
15384
+ shortName: 'meld',
15385
+ chainId: 222000222,
15386
+ networkId: 222000222,
15387
+ explorers: []
15388
+ },
15361
15389
  {
15362
15390
  name: 'Neon EVM DevNet',
15363
15391
  chain: 'Solana',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.128",
3
+ "version": "0.0.130",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {