eth-chainlist 0.0.176 → 0.0.177

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.177 (2023-07-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.176 ([edc2fd9](https://github.com/poowf/eth-chainlist/commit/edc2fd9c555a9636899b5e2e60e91e6859e9df5a))
9
+ * update chain data ([86457a1](https://github.com/poowf/eth-chainlist/commit/86457a143e34785c6c5cd93cbe70c9fc25ec0caa))
10
+
3
11
  ### 0.0.176 (2023-07-01)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -7992,6 +7992,27 @@ const chainArray = [
7992
7992
  }
7993
7993
  ]
7994
7994
  },
7995
+ {
7996
+ name: 'Moonsama Network',
7997
+ chain: 'MSN',
7998
+ rpc: [ 'https://rpc.moonsama.com', 'wss://rpc.moonsama.com/ws' ],
7999
+ faucets: [ 'https://multiverse.moonsama.com/faucet' ],
8000
+ nativeCurrency: { name: 'Sama Token', symbol: 'SAMA', decimals: 18 },
8001
+ infoURL: 'https://moonsama.com',
8002
+ shortName: 'msn',
8003
+ chainId: 2199,
8004
+ networkId: 2199,
8005
+ slip44: 2199,
8006
+ icon: 'msn',
8007
+ explorers: [
8008
+ {
8009
+ name: 'blockscout',
8010
+ url: 'https://explorer.moonsama.com',
8011
+ icon: 'blockscout',
8012
+ standard: 'EIP3091'
8013
+ }
8014
+ ]
8015
+ },
7995
8016
  {
7996
8017
  name: 'Bitcoin EVM',
7997
8018
  chain: 'Bitcoin EVM',
@@ -9316,6 +9337,26 @@ const chainArray = [
9316
9337
  }
9317
9338
  ]
9318
9339
  },
9340
+ {
9341
+ name: 'MEVerse Chain Testnet',
9342
+ chain: 'MEVerse',
9343
+ rpc: [ 'https://rpc.meversetestnet.io' ],
9344
+ faucets: [],
9345
+ nativeCurrency: { name: 'MEVerse', symbol: 'MEV', decimals: 18 },
9346
+ infoURL: 'https://www.meverse.sg',
9347
+ shortName: 'TESTMEV',
9348
+ chainId: 4759,
9349
+ networkId: 4759,
9350
+ icon: 'meverse',
9351
+ explorers: [
9352
+ {
9353
+ name: 'MEVerse Chain Testnet Explorer',
9354
+ url: 'https://testnet.meversescan.io',
9355
+ standard: 'none',
9356
+ icon: 'meverse'
9357
+ }
9358
+ ]
9359
+ },
9319
9360
  {
9320
9361
  name: 'BlackFort Exchange Network Testnet',
9321
9362
  chain: 'TBXN',
@@ -10120,6 +10161,26 @@ const chainArray = [
10120
10161
  }
10121
10162
  ]
10122
10163
  },
10164
+ {
10165
+ name: 'MEVerse Chain Mainnet',
10166
+ chain: 'MEVerse',
10167
+ rpc: [ 'https://rpc.meversemainnet.io' ],
10168
+ faucets: [],
10169
+ nativeCurrency: { name: 'MEVerse', symbol: 'MEV', decimals: 18 },
10170
+ infoURL: 'https://www.meverse.sg',
10171
+ shortName: 'MEV',
10172
+ chainId: 7518,
10173
+ networkId: 7518,
10174
+ icon: 'meverse',
10175
+ explorers: [
10176
+ {
10177
+ name: 'MEVerse Chain Explorer',
10178
+ url: 'https://www.meversescan.io',
10179
+ standard: 'none',
10180
+ icon: 'meverse'
10181
+ }
10182
+ ]
10183
+ },
10123
10184
  {
10124
10185
  name: 'ADIL Testnet',
10125
10186
  chain: 'ADIL',
@@ -16456,6 +16517,27 @@ const chainArray = [
16456
16517
  slip44: 1,
16457
16518
  explorers: []
16458
16519
  },
16520
+ {
16521
+ name: 'AltLayer Zero Gas Network',
16522
+ chain: 'ETH',
16523
+ rpc: [ 'https://zero.alt.technology' ],
16524
+ faucets: [],
16525
+ nativeCurrency: { name: 'ZERO', symbol: 'ZERO', decimals: 18 },
16526
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
16527
+ infoURL: 'https://altlayer.io',
16528
+ shortName: 'alt-zerogas',
16529
+ chainId: 4000003,
16530
+ networkId: 4000003,
16531
+ icon: 'altlayer',
16532
+ explorers: [
16533
+ {
16534
+ name: 'blockscout',
16535
+ url: 'https://zero-explorer.alt.technology',
16536
+ icon: 'blockscout',
16537
+ standard: 'EIP3091'
16538
+ }
16539
+ ]
16540
+ },
16459
16541
  {
16460
16542
  name: 'Worlds Caldera',
16461
16543
  chain: 'WCal',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.176",
3
+ "version": "0.0.177",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {