eth-chainlist 0.0.83 → 0.0.85

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.85 (2023-02-23)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.84 ([5b6907d](https://github.com/poowf/eth-chainlist/commit/5b6907d1162bc4b5d7c3cc2199f8630fb27c0733))
9
+ * update chain data ([d937916](https://github.com/poowf/eth-chainlist/commit/d93791672276e156a2f8e3285754af84b36f4050))
10
+
11
+ ### 0.0.84 (2023-02-22)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.83 ([f5ee66e](https://github.com/poowf/eth-chainlist/commit/f5ee66e75960e6fc8f658c9be4e9a96e9624b069))
17
+ * update chain data ([02cd060](https://github.com/poowf/eth-chainlist/commit/02cd060e67e610c0bf80d8376056fdddb0785a7b))
18
+
3
19
  ### 0.0.83 (2023-02-21)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -1683,6 +1683,27 @@ const chainArray = [
1683
1683
  }
1684
1684
  ]
1685
1685
  },
1686
+ {
1687
+ name: 'Bitkub Chain',
1688
+ chain: 'BKC',
1689
+ icon: 'bkc',
1690
+ rpc: [ 'https://rpc.bitkubchain.io', 'wss://wss.bitkubchain.io' ],
1691
+ faucets: [],
1692
+ nativeCurrency: { name: 'Bitkub Coin', symbol: 'KUB', decimals: 18 },
1693
+ infoURL: 'https://www.bitkubchain.com/',
1694
+ shortName: 'bkc',
1695
+ chainId: 96,
1696
+ networkId: 96,
1697
+ explorers: [
1698
+ {
1699
+ name: 'Bitkub Chain Explorer',
1700
+ url: 'https://bkcscan.com',
1701
+ standard: 'none',
1702
+ icon: 'bkc'
1703
+ }
1704
+ ],
1705
+ redFlags: [ 'reusedChainId' ]
1706
+ },
1686
1707
  {
1687
1708
  name: 'Binance Smart Chain Testnet',
1688
1709
  chain: 'BSC',
@@ -1992,6 +2013,25 @@ const chainArray = [
1992
2013
  networkId: 116,
1993
2014
  explorers: []
1994
2015
  },
2016
+ {
2017
+ name: 'Arcology Testnet',
2018
+ chain: 'Arcology',
2019
+ icon: 'acolicon',
2020
+ rpc: [ 'https://testnet.arcology.network/rpc' ],
2021
+ faucets: [],
2022
+ nativeCurrency: { name: 'Arcology Coin', symbol: 'Acol', decimals: 18 },
2023
+ infoURL: 'https://arcology.network/',
2024
+ shortName: 'arcology',
2025
+ chainId: 118,
2026
+ networkId: 118,
2027
+ explorers: [
2028
+ {
2029
+ name: 'arcology',
2030
+ url: 'https://testnet.arcology.network/explorer',
2031
+ standard: 'none'
2032
+ }
2033
+ ]
2034
+ },
1995
2035
  {
1996
2036
  name: 'ENULS Mainnet',
1997
2037
  chain: 'ENULS',
@@ -7835,6 +7875,25 @@ const chainArray = [
7835
7875
  }
7836
7876
  ]
7837
7877
  },
7878
+ {
7879
+ name: 'Hika Devnet',
7880
+ chain: 'Hika Network Testnet',
7881
+ icon: 'hik',
7882
+ rpc: [ 'https://rpc-testnet.hika.network/' ],
7883
+ faucets: [],
7884
+ nativeCurrency: { name: 'Hik Token', symbol: 'HIK', decimals: 18 },
7885
+ infoURL: 'https://hika.network/',
7886
+ shortName: 'hik',
7887
+ chainId: 5729,
7888
+ networkId: 5729,
7889
+ explorers: [
7890
+ {
7891
+ name: 'Hika Network Testnet Explorer',
7892
+ url: 'https://scan-testnet.hika.network',
7893
+ standard: 'none'
7894
+ }
7895
+ ]
7896
+ },
7838
7897
  {
7839
7898
  name: 'Ganache',
7840
7899
  title: 'Ganache GUI Ethereum Testnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.83",
3
+ "version": "0.0.85",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {