eth-chainlist 0.0.118 → 0.0.120

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.120 (2023-04-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.119 ([e93e8af](https://github.com/poowf/eth-chainlist/commit/e93e8af3f155f7cfe9952c723dc9c5150bbd4395))
9
+ * update chain data ([de7bb18](https://github.com/poowf/eth-chainlist/commit/de7bb188f1048a707afabe595bf3d50c278ad6a2))
10
+
11
+ ### 0.0.119 (2023-04-05)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.118 ([ef1f738](https://github.com/poowf/eth-chainlist/commit/ef1f738fe5dcfd7ec78438263a2f3dd7902615b3))
17
+ * update chain data ([33ec15e](https://github.com/poowf/eth-chainlist/commit/33ec15e1ccce476d92003364c540fdc3a5d92cf0))
18
+
3
19
  ### 0.0.118 (2023-04-04)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -2670,6 +2670,24 @@ const chainArray = [
2670
2670
  explorers: [],
2671
2671
  status: 'incubating'
2672
2672
  },
2673
+ {
2674
+ name: 'Neutrinos TestNet',
2675
+ chain: 'NEUTR',
2676
+ rpc: [ 'https://testnet-rpc.neutrinoschain.com' ],
2677
+ faucets: [ 'https://neutrinoschain.com/faucet' ],
2678
+ nativeCurrency: { name: 'Neutrinos', symbol: 'NEUTR', decimals: 18 },
2679
+ infoURL: 'https://docs.neutrinoschain.com',
2680
+ shortName: 'NEUTR',
2681
+ chainId: 197,
2682
+ networkId: 197,
2683
+ explorers: [
2684
+ {
2685
+ name: 'blockscout',
2686
+ url: 'https://testnet.neutrinoschain.com',
2687
+ standard: 'EIP3091'
2688
+ }
2689
+ ]
2690
+ },
2673
2691
  {
2674
2692
  name: 'BitTorrent Chain Mainnet',
2675
2693
  chain: 'BTTC',
@@ -4329,6 +4347,33 @@ const chainArray = [
4329
4347
  }
4330
4348
  ]
4331
4349
  },
4350
+ {
4351
+ name: 'BeOne Chain Mainnet',
4352
+ chain: 'BOC',
4353
+ icon: 'beonechain',
4354
+ rpc: [
4355
+ 'https://dataseed1.beonechain.com',
4356
+ 'https://dataseed2.beonechain.com',
4357
+ 'https://dataseed-us1.beonechain.com',
4358
+ 'https://dataseed-us2.beonechain.com',
4359
+ 'https://dataseed-uk1.beonechain.com',
4360
+ 'https://dataseed-uk2.beonechain.com'
4361
+ ],
4362
+ faucets: [],
4363
+ nativeCurrency: { name: 'BeOne Chain Mainnet', symbol: 'BOC', decimals: 18 },
4364
+ infoURL: 'https://beonechain.com',
4365
+ shortName: 'BOC',
4366
+ chainId: 818,
4367
+ networkId: 818,
4368
+ slip44: 8181,
4369
+ explorers: [
4370
+ {
4371
+ name: 'BeOne Chain Mainnet',
4372
+ url: 'https://beonescan.com',
4373
+ standard: 'EIP3091'
4374
+ }
4375
+ ]
4376
+ },
4332
4377
  {
4333
4378
  name: 'Callisto Mainnet',
4334
4379
  chain: 'CLO',
@@ -7333,10 +7378,12 @@ const chainArray = [
7333
7378
  rpc: [ 'https://api.aqua.wemixkanvas.io' ],
7334
7379
  faucets: [],
7335
7380
  infoURL: 'https://wemixkanvas.io',
7381
+ icon: 'wemixkanvas',
7336
7382
  explorers: [
7337
7383
  {
7338
7384
  name: 'blockscout',
7339
7385
  url: 'https://blockscout.aqua.wemixkanvas.io',
7386
+ icon: 'wemixkanvas',
7340
7387
  standard: 'EIP3091'
7341
7388
  }
7342
7389
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.118",
3
+ "version": "0.0.120",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {