eth-chainlist 0.0.444 → 0.0.445

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.445 (2024-07-16)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.444 ([c925aa1](https://github.com/poowf/eth-chainlist/commit/c925aa10b91640b2343e4971a84acffb731163fe))
9
+ * update chain data ([3793c0e](https://github.com/poowf/eth-chainlist/commit/3793c0eafea9325656247abfd9ee22036c53dcbb))
10
+
3
11
  ### 0.0.444 (2024-07-15)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -7695,7 +7695,16 @@ const chainArray = [
7695
7695
  shortName: 'wan',
7696
7696
  chainId: 888,
7697
7697
  networkId: 888,
7698
- slip44: 5718350
7698
+ slip44: 5718350,
7699
+ icon: 'wanchain',
7700
+ explorers: [
7701
+ {
7702
+ name: 'wanscan',
7703
+ icon: 'wanchain',
7704
+ url: 'https://wanscan.org',
7705
+ standard: 'EIP3091'
7706
+ }
7707
+ ]
7699
7708
  },
7700
7709
  {
7701
7710
  name: 'MAXI Chain Testnet',
@@ -8337,7 +8346,16 @@ const chainArray = [
8337
8346
  shortName: 'twan',
8338
8347
  chainId: 999,
8339
8348
  networkId: 999,
8340
- slip44: 1
8349
+ slip44: 1,
8350
+ icon: 'wanchain',
8351
+ explorers: [
8352
+ {
8353
+ name: 'wanscan',
8354
+ icon: 'wanchain',
8355
+ url: 'https://testnet.wanscan.org',
8356
+ standard: 'EIP3091'
8357
+ }
8358
+ ]
8341
8359
  },
8342
8360
  {
8343
8361
  name: 'GTON Mainnet',
@@ -11205,6 +11223,7 @@ const chainArray = [
11205
11223
  nativeCurrency: { name: 'LIF3', symbol: 'LIF3', decimals: 18 },
11206
11224
  infoURL: 'https://docs.lif3.com/',
11207
11225
  shortName: 'lif3-testnet',
11226
+ icon: 'lif3',
11208
11227
  chainId: 1811,
11209
11228
  networkId: 1811,
11210
11229
  explorers: [
@@ -16108,6 +16127,11 @@ const chainArray = [
16108
16127
  chainId: 5000,
16109
16128
  networkId: 5000,
16110
16129
  explorers: [
16130
+ {
16131
+ name: 'mantlescan',
16132
+ url: 'https://mantlescan.xyz',
16133
+ standard: 'EIP3091'
16134
+ },
16111
16135
  {
16112
16136
  name: 'Mantle Explorer',
16113
16137
  url: 'https://explorer.mantle.xyz',
@@ -19044,6 +19068,7 @@ const chainArray = [
19044
19068
  nativeCurrency: { name: 'LIF3', symbol: 'LIF3', decimals: 18 },
19045
19069
  infoURL: 'https://docs.lif3.com/',
19046
19070
  shortName: 'lif3-mainnet',
19071
+ icon: 'lif3',
19047
19072
  chainId: 8869,
19048
19073
  networkId: 8869,
19049
19074
  explorers: [
@@ -20293,6 +20318,25 @@ const chainArray = [
20293
20318
  chainId: 10086,
20294
20319
  networkId: 10086
20295
20320
  },
20321
+ {
20322
+ name: 'MetaNova Verse',
20323
+ chain: 'MNV',
20324
+ rpc: [ 'https://web3.metanovaverse.com' ],
20325
+ faucets: [],
20326
+ nativeCurrency: { name: 'MNV', symbol: 'MNV', decimals: 18 },
20327
+ features: [],
20328
+ infoURL: 'https://www.blockxnet.com/',
20329
+ shortName: 'mnv',
20330
+ chainId: 10096,
20331
+ networkId: 10096,
20332
+ explorers: [
20333
+ {
20334
+ name: 'Blockscout',
20335
+ url: 'https://explorer.blockxnet.com',
20336
+ standard: 'EIP3091'
20337
+ }
20338
+ ]
20339
+ },
20296
20340
  {
20297
20341
  name: 'Blockchain Genesis Mainnet',
20298
20342
  chain: 'GEN',
@@ -33787,6 +33831,19 @@ const chainArray = [
33787
33831
  }
33788
33832
  ]
33789
33833
  },
33834
+ {
33835
+ name: 'Neon EVM Devnet Rollup',
33836
+ chain: 'Solana',
33837
+ rpc: [ 'https://devnet.rollup.neonevm.org/' ],
33838
+ faucets: [],
33839
+ icon: 'neon',
33840
+ nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
33841
+ infoURL: 'https://neonevm.org/',
33842
+ shortName: 'neonevm-devnet-rollup',
33843
+ chainId: 245022929,
33844
+ networkId: 245022929,
33845
+ explorers: []
33846
+ },
33790
33847
  {
33791
33848
  name: 'Neon EVM Mainnet',
33792
33849
  chain: 'Solana',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.444",
3
+ "version": "0.0.445",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {