eth-chainlist 0.0.264 → 0.0.265

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.265 (2023-10-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.264 ([c4783e0](https://github.com/poowf/eth-chainlist/commit/c4783e0af3770e0a6b4f9408cf8c32bee64d1ab8))
9
+ * update chain data ([fccb3d1](https://github.com/poowf/eth-chainlist/commit/fccb3d1452b4371e223fd05f79a2d7e48f6147a7))
10
+
3
11
  ### 0.0.264 (2023-10-21)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -641,16 +641,24 @@ const chainArray = [
641
641
  networkId: 33
642
642
  },
643
643
  {
644
- name: 'Dithereum Testnet',
645
- chain: 'DTH',
646
- icon: 'dithereum',
647
- rpc: [ 'https://node-testnet.dithereum.io' ],
648
- faucets: [ 'https://faucet.dithereum.org' ],
649
- nativeCurrency: { name: 'Dither', symbol: 'DTH', decimals: 18 },
650
- infoURL: 'https://dithereum.org',
651
- shortName: 'dth',
644
+ name: 'SecureChain Mainnet',
645
+ chain: 'SCAI',
646
+ icon: 'SCAIIcon',
647
+ rpc: [ 'https://mainnet-rpc.scai.network' ],
648
+ faucets: [ 'https://faucet.securechain.ai' ],
649
+ nativeCurrency: { name: 'SecureChain', symbol: 'SCAI', decimals: 18 },
650
+ infoURL: 'https://securechain.ai',
651
+ shortName: 'scai',
652
652
  chainId: 34,
653
- networkId: 34
653
+ networkId: 34,
654
+ redFlags: [ 'reusedChainId' ],
655
+ explorers: [
656
+ {
657
+ name: 'SecureChain Mainnet',
658
+ url: 'https://explorer.securechain.ai',
659
+ standard: 'EIP3091'
660
+ }
661
+ ]
654
662
  },
655
663
  {
656
664
  name: 'TBWG Chain',
@@ -18371,6 +18379,24 @@ const chainArray = [
18371
18379
  }
18372
18380
  ]
18373
18381
  },
18382
+ {
18383
+ name: 'Bitica Chain Mainnet',
18384
+ chain: 'BDCC',
18385
+ rpc: [ 'https://mainnet-rpc.biticablockchain.com/' ],
18386
+ faucets: [],
18387
+ nativeCurrency: { name: 'Bitica Coin', symbol: 'BDCC', decimals: 18 },
18388
+ infoURL: 'https://biticablockchain.com/',
18389
+ shortName: 'bdcc',
18390
+ chainId: 188710,
18391
+ networkId: 188710,
18392
+ explorers: [
18393
+ {
18394
+ name: 'Bitica DPOS Blockchain Explorer',
18395
+ url: 'https://biticablockchain.com',
18396
+ standard: 'none'
18397
+ }
18398
+ ]
18399
+ },
18374
18400
  {
18375
18401
  name: 'Condor Test Network',
18376
18402
  chain: 'CONDOR',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.264",
3
+ "version": "0.0.265",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {