eth-chainlist 0.0.263 → 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,21 @@
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
+
11
+ ### 0.0.264 (2023-10-21)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.263 ([972d045](https://github.com/poowf/eth-chainlist/commit/972d04578d289eea38cb7e843798db2882a32617))
17
+ * update chain data ([5688a63](https://github.com/poowf/eth-chainlist/commit/5688a63b10551f10341a9b3c70b0709d72a13686))
18
+
3
19
  ### 0.0.263 (2023-10-20)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -12,7 +12,9 @@ const chainArray = [
12
12
  'wss://ethereum.publicnode.com',
13
13
  'https://mainnet.gateway.tenderly.co',
14
14
  'wss://mainnet.gateway.tenderly.co',
15
- 'https://rpc.blocknative.com/boost'
15
+ 'https://rpc.blocknative.com/boost',
16
+ 'https://rpc.flashbots.net',
17
+ 'https://rpc.flashbots.net/fast'
16
18
  ],
17
19
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
18
20
  faucets: [],
@@ -639,16 +641,24 @@ const chainArray = [
639
641
  networkId: 33
640
642
  },
641
643
  {
642
- name: 'Dithereum Testnet',
643
- chain: 'DTH',
644
- icon: 'dithereum',
645
- rpc: [ 'https://node-testnet.dithereum.io' ],
646
- faucets: [ 'https://faucet.dithereum.org' ],
647
- nativeCurrency: { name: 'Dither', symbol: 'DTH', decimals: 18 },
648
- infoURL: 'https://dithereum.org',
649
- 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',
650
652
  chainId: 34,
651
- 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
+ ]
652
662
  },
653
663
  {
654
664
  name: 'TBWG Chain',
@@ -3249,6 +3259,26 @@ const chainArray = [
3249
3259
  }
3250
3260
  ]
3251
3261
  },
3262
+ {
3263
+ name: 'VinuChain Network',
3264
+ chain: 'VinuChain',
3265
+ icon: 'vitainu',
3266
+ rpc: [ 'https://vinuchain-rpc.com' ],
3267
+ faucets: [],
3268
+ nativeCurrency: { name: 'VinuChain', symbol: 'VС', decimals: 18 },
3269
+ infoURL: 'https://vitainu.org',
3270
+ shortName: 'VC',
3271
+ chainId: 207,
3272
+ networkId: 207,
3273
+ explorers: [
3274
+ {
3275
+ name: 'VinuScan',
3276
+ url: 'https://vinuscan.com',
3277
+ icon: 'vinuscan',
3278
+ standard: 'none'
3279
+ }
3280
+ ]
3281
+ },
3252
3282
  {
3253
3283
  name: 'Structx Mainnet',
3254
3284
  chain: 'utx',
@@ -16098,7 +16128,7 @@ const chainArray = [
16098
16128
  },
16099
16129
  {
16100
16130
  name: 'Bifrost Testnet',
16101
- title: 'The Bifrost Testnet network',
16131
+ title: 'Bifrost Network Testnet',
16102
16132
  chain: 'BFC',
16103
16133
  rpc: [
16104
16134
  'https://public-01.testnet.thebifrost.io/rpc',
@@ -18349,6 +18379,24 @@ const chainArray = [
18349
18379
  }
18350
18380
  ]
18351
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
+ },
18352
18400
  {
18353
18401
  name: 'Condor Test Network',
18354
18402
  chain: 'CONDOR',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.263",
3
+ "version": "0.0.265",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {