eth-chainlist 0.0.92 → 0.0.94

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.94 (2023-03-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.93 ([39cd640](https://github.com/poowf/eth-chainlist/commit/39cd640c5a28e1528876e1de060278b6664c733c))
9
+ * update chain data ([0378d0e](https://github.com/poowf/eth-chainlist/commit/0378d0e8c867465388e7f279c97eb79d96fb3440))
10
+
11
+ ### 0.0.93 (2023-03-05)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.92 ([07ad5d3](https://github.com/poowf/eth-chainlist/commit/07ad5d3ebfb2512884f4dd8a6a1de47eeb34e485))
17
+ * update chain data ([87490a9](https://github.com/poowf/eth-chainlist/commit/87490a94a340a6b53ed38e14b7c28c338a563fab))
18
+
3
19
  ### 0.0.92 (2023-03-04)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -9478,6 +9478,24 @@ const chainArray = [
9478
9478
  }
9479
9479
  ]
9480
9480
  },
9481
+ {
9482
+ name: 'HashBit Mainnet',
9483
+ chain: 'HBIT',
9484
+ rpc: [ 'https://mainnet-rpc.hashbit.org', 'https://rpc.hashbit.org' ],
9485
+ faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
9486
+ nativeCurrency: { name: 'HashBit Native Token', symbol: 'HBIT', decimals: 18 },
9487
+ infoURL: 'https://hashbit.org',
9488
+ shortName: 'hbit',
9489
+ chainId: 11119,
9490
+ networkId: 11119,
9491
+ explorers: [
9492
+ {
9493
+ name: 'hashbitscan',
9494
+ url: 'https://explorer.hashbit.org',
9495
+ standard: 'EIP3091'
9496
+ }
9497
+ ]
9498
+ },
9481
9499
  {
9482
9500
  name: 'Haqq Network',
9483
9501
  chain: 'Haqq',
@@ -9595,6 +9613,25 @@ const chainArray = [
9595
9613
  }
9596
9614
  ]
9597
9615
  },
9616
+ {
9617
+ name: 'Fibonacci Mainnet',
9618
+ chain: 'FIBO',
9619
+ icon: 'fibonacci',
9620
+ rpc: [ 'https://node1.fibo-api.asia' ],
9621
+ faucets: [],
9622
+ nativeCurrency: { name: 'FIBONACCI UTILITY TOKEN', symbol: 'FIBO', decimals: 18 },
9623
+ infoURL: 'https://fibochain.org',
9624
+ shortName: 'fibo',
9625
+ chainId: 12306,
9626
+ networkId: 1230,
9627
+ explorers: [
9628
+ {
9629
+ name: 'fiboscan',
9630
+ url: 'https://scan.fibochain.org',
9631
+ standard: 'EIP3091'
9632
+ }
9633
+ ]
9634
+ },
9598
9635
  {
9599
9636
  name: 'BLG Testnet',
9600
9637
  chain: 'BLG',
@@ -12934,6 +12971,25 @@ const chainArray = [
12934
12971
  }
12935
12972
  ]
12936
12973
  },
12974
+ {
12975
+ name: 'BeanEco SmartChain',
12976
+ title: 'BESC Mainnet',
12977
+ chain: 'BESC',
12978
+ rpc: [ 'https://mainnet-rpc.bescscan.io' ],
12979
+ faucets: [ 'faucet.bescscan.ion' ],
12980
+ nativeCurrency: { name: 'BeanEco SmartChain', symbol: 'BESC', decimals: 18 },
12981
+ infoURL: 'besceco.finance',
12982
+ shortName: 'BESC',
12983
+ chainId: 535037,
12984
+ networkId: 535037,
12985
+ explorers: [
12986
+ {
12987
+ name: 'bescscan',
12988
+ url: 'https://Bescscan.io',
12989
+ standard: 'EIP3091'
12990
+ }
12991
+ ]
12992
+ },
12937
12993
  {
12938
12994
  name: 'Bear Network Chain Mainnet',
12939
12995
  chain: 'BRNKC',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {