eth-chainlist 0.0.82 → 0.0.84

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.84 (2023-02-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.83 ([f5ee66e](https://github.com/poowf/eth-chainlist/commit/f5ee66e75960e6fc8f658c9be4e9a96e9624b069))
9
+ * update chain data ([02cd060](https://github.com/poowf/eth-chainlist/commit/02cd060e67e610c0bf80d8376056fdddb0785a7b))
10
+
11
+ ### 0.0.83 (2023-02-21)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.82 ([2bda4a4](https://github.com/poowf/eth-chainlist/commit/2bda4a4549d46231e0565fa911e09b9cea54885f))
17
+ * update chain data ([57fc8d5](https://github.com/poowf/eth-chainlist/commit/57fc8d562e06e36173578b1dbcfeb4571774a9a7))
18
+
3
19
  ### 0.0.82 (2023-02-20)
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',
@@ -3755,6 +3776,24 @@ const chainArray = [
3755
3776
  chainId: 600,
3756
3777
  networkId: 600
3757
3778
  },
3779
+ {
3780
+ name: 'Graphlinq Blockchain Mainnet',
3781
+ chain: 'GLQ Blockchain',
3782
+ rpc: [ 'https://glq-dataseed.graphlinq.io' ],
3783
+ faucets: [],
3784
+ nativeCurrency: { name: 'GLQ', symbol: 'GLQ', decimals: 18 },
3785
+ infoURL: 'https://graphlinq.io',
3786
+ shortName: 'glq',
3787
+ chainId: 614,
3788
+ networkId: 614,
3789
+ explorers: [
3790
+ {
3791
+ name: 'GLQ Explorer',
3792
+ url: 'https://explorer.graphlinq.io',
3793
+ standard: 'none'
3794
+ }
3795
+ ]
3796
+ },
3758
3797
  {
3759
3798
  name: 'SX Network Testnet',
3760
3799
  chain: 'SX',
@@ -8494,6 +8533,7 @@ const chainArray = [
8494
8533
  {
8495
8534
  name: 'MARO Blockchain Mainnet',
8496
8535
  chain: 'MARO Blockchain',
8536
+ icon: 'MARO',
8497
8537
  rpc: [ 'https://rpc-mainnet.ma.ro' ],
8498
8538
  faucets: [],
8499
8539
  nativeCurrency: { name: 'MARO', symbol: 'MARO', decimals: 18 },
@@ -9353,6 +9393,18 @@ const chainArray = [
9353
9393
  }
9354
9394
  ]
9355
9395
  },
9396
+ {
9397
+ name: 'BLG Testnet',
9398
+ chain: 'BLG',
9399
+ icon: 'blg',
9400
+ rpc: [ 'https://rpc.blgchain.com' ],
9401
+ faucets: [ 'https://faucet.blgchain.com' ],
9402
+ nativeCurrency: { name: 'Blg', symbol: 'BLG', decimals: 18 },
9403
+ infoURL: 'https://blgchain.com',
9404
+ shortName: 'blgchain',
9405
+ chainId: 12321,
9406
+ networkId: 12321
9407
+ },
9356
9408
  {
9357
9409
  name: 'Step Testnet',
9358
9410
  title: 'Step Test Network',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.82",
3
+ "version": "0.0.84",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {