eth-chainlist 0.0.85 → 0.0.86

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.86 (2023-02-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.85 ([4b3bc35](https://github.com/poowf/eth-chainlist/commit/4b3bc358f0be7f489d32145ba4a28a2fec7a4798))
9
+ * update chain data ([2bdeeaa](https://github.com/poowf/eth-chainlist/commit/2bdeeaaac9ed28d9094fabc2d11f51e43168ce5c))
10
+
3
11
  ### 0.0.85 (2023-02-23)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -6000,6 +6000,44 @@ const chainArray = [
6000
6000
  }
6001
6001
  ]
6002
6002
  },
6003
+ {
6004
+ name: 'Bitcichain Mainnet',
6005
+ chain: 'BITCI',
6006
+ icon: 'bitci',
6007
+ rpc: [ 'https://rpc.bitci.com' ],
6008
+ faucets: [],
6009
+ nativeCurrency: { name: 'Bitci', symbol: 'BITCI', decimals: 18 },
6010
+ infoURL: 'https://www.bitcichain.com',
6011
+ shortName: 'bitci',
6012
+ chainId: 1907,
6013
+ networkId: 1907,
6014
+ explorers: [
6015
+ {
6016
+ name: 'Bitci Explorer',
6017
+ url: 'https://bitciexplorer.com',
6018
+ standard: 'EIP3091'
6019
+ }
6020
+ ]
6021
+ },
6022
+ {
6023
+ name: 'Bitcichain Testnet',
6024
+ chain: 'TBITCI',
6025
+ icon: 'bitci',
6026
+ rpc: [ 'https://testnet.bitcichain.com' ],
6027
+ faucets: [ 'https://faucet.bitcichain.com' ],
6028
+ nativeCurrency: { name: 'Test Bitci', symbol: 'TBITCI', decimals: 18 },
6029
+ infoURL: 'https://www.bitcichain.com',
6030
+ shortName: 'tbitci',
6031
+ chainId: 1908,
6032
+ networkId: 1908,
6033
+ explorers: [
6034
+ {
6035
+ name: 'Bitci Explorer Testnet',
6036
+ url: 'https://testnet.bitciexplorer.com',
6037
+ standard: 'EIP3091'
6038
+ }
6039
+ ]
6040
+ },
6003
6041
  {
6004
6042
  name: 'ONUS Chain Testnet',
6005
6043
  title: 'ONUS Chain Testnet',
@@ -7876,8 +7914,9 @@ const chainArray = [
7876
7914
  ]
7877
7915
  },
7878
7916
  {
7879
- name: 'Hika Devnet',
7880
- chain: 'Hika Network Testnet',
7917
+ name: 'Hika Network Testnet',
7918
+ title: 'Hika Network Testnet',
7919
+ chain: 'HIK',
7881
7920
  icon: 'hik',
7882
7921
  rpc: [ 'https://rpc-testnet.hika.network/' ],
7883
7922
  faucets: [],
@@ -11340,6 +11379,29 @@ const chainArray = [
11340
11379
  }
11341
11380
  ]
11342
11381
  },
11382
+ {
11383
+ name: 'Base Goerli Testnet',
11384
+ chain: 'ETH',
11385
+ rpc: [ 'https://goerli.base.org' ],
11386
+ faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
11387
+ nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
11388
+ infoURL: 'https://base.org',
11389
+ shortName: 'basegor',
11390
+ chainId: 84531,
11391
+ networkId: 84531,
11392
+ explorers: [
11393
+ {
11394
+ name: 'basescan',
11395
+ url: 'https://goerli.basescan.org',
11396
+ standard: 'none'
11397
+ },
11398
+ {
11399
+ name: 'basescout',
11400
+ url: 'https://base-goerli.blockscout.com',
11401
+ standard: 'none'
11402
+ }
11403
+ ]
11404
+ },
11343
11405
  {
11344
11406
  name: 'Chiliz Scoville Testnet',
11345
11407
  chain: 'CHZ',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {