eth-chainlist 0.0.102 → 0.0.104

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.104 (2023-03-19)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.103 ([e139dba](https://github.com/poowf/eth-chainlist/commit/e139dba28f0c963e1215e57472e59a82bfcd1d01))
9
+ * update chain data ([33bfd5a](https://github.com/poowf/eth-chainlist/commit/33bfd5a9cf5878969b4d5626c9a703e504b47705))
10
+
11
+ ### 0.0.103 (2023-03-18)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.102 ([f296b3b](https://github.com/poowf/eth-chainlist/commit/f296b3b4d6e35f30d2808bd5873e1441b50941d2))
17
+ * update chain data ([a0cbd5f](https://github.com/poowf/eth-chainlist/commit/a0cbd5f1b0ecca9188a8d9f93469f310a7431686))
18
+
3
19
  ### 0.0.102 (2023-03-17)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -8335,6 +8335,25 @@ const chainArray = [
8335
8335
  }
8336
8336
  ]
8337
8337
  },
8338
+ {
8339
+ name: 'Scolcoin WeiChain Testnet',
8340
+ chain: 'SCOLWEI-testnet',
8341
+ rpc: [ 'https://testnet-rpc.scolcoin.com' ],
8342
+ faucets: [ 'https://faucet.scolcoin.com' ],
8343
+ nativeCurrency: { name: 'Scolcoin', symbol: 'SCOL', decimals: 18 },
8344
+ infoURL: 'https://scolcoin.com',
8345
+ shortName: 'SRC-test',
8346
+ chainId: 6552,
8347
+ networkId: 6552,
8348
+ icon: 'scolcoin',
8349
+ explorers: [
8350
+ {
8351
+ name: 'Scolscan Testnet Explorer',
8352
+ url: 'https://testnet-explorer.scolcoin.com',
8353
+ standard: 'EIP3091'
8354
+ }
8355
+ ]
8356
+ },
8338
8357
  {
8339
8358
  name: 'Pixie Chain Mainnet',
8340
8359
  chain: 'PixieChain',
@@ -8839,6 +8858,24 @@ const chainArray = [
8839
8858
  chainId: 8285,
8840
8859
  networkId: 8285
8841
8860
  },
8861
+ {
8862
+ name: 'Dracones Financial Services',
8863
+ title: 'The Dracones Mainnet',
8864
+ chain: 'FUCK',
8865
+ rpc: [ 'https://api.dracones.net/' ],
8866
+ faucets: [],
8867
+ nativeCurrency: {
8868
+ name: 'Functionally Universal Coin Kind',
8869
+ symbol: 'FUCK',
8870
+ decimals: 18
8871
+ },
8872
+ infoURL: 'https://wolfery.com',
8873
+ shortName: 'fuck',
8874
+ chainId: 8387,
8875
+ networkId: 8387,
8876
+ icon: 'dracones',
8877
+ explorers: []
8878
+ },
8842
8879
  {
8843
8880
  name: 'Base',
8844
8881
  chain: 'ETH',
@@ -11484,6 +11521,25 @@ const chainArray = [
11484
11521
  }
11485
11522
  ]
11486
11523
  },
11524
+ {
11525
+ name: 'Scolcoin Mainnet',
11526
+ chain: 'SCOLWEI',
11527
+ rpc: [ 'https://mainnet-rpc.scolcoin.com' ],
11528
+ faucets: [],
11529
+ nativeCurrency: { name: 'Scolcoin', symbol: 'SCOL', decimals: 18 },
11530
+ infoURL: 'https://scolcoin.com',
11531
+ shortName: 'SRC',
11532
+ chainId: 65450,
11533
+ networkId: 65450,
11534
+ icon: 'scolcoin',
11535
+ explorers: [
11536
+ {
11537
+ name: 'Scolscan Explorer',
11538
+ url: 'https://explorer.scolcoin.com',
11539
+ standard: 'EIP3091'
11540
+ }
11541
+ ]
11542
+ },
11487
11543
  {
11488
11544
  name: 'SiriusNet',
11489
11545
  chain: 'SIN',
@@ -14421,6 +14477,26 @@ const chainArray = [
14421
14477
  }
14422
14478
  ]
14423
14479
  },
14480
+ {
14481
+ name: 'HUMAN Protocol',
14482
+ title: 'HUMAN Protocol',
14483
+ chain: 'wan-red-ain',
14484
+ rpc: [ 'https://mainnet.skalenodes.com/v1/wan-red-ain' ],
14485
+ faucets: [ 'https://dashboard.humanprotocol.org/faucet' ],
14486
+ nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
14487
+ infoURL: 'https://www.humanprotocol.org',
14488
+ shortName: 'human-mainnet',
14489
+ chainId: 1273227453,
14490
+ networkId: 1273227453,
14491
+ explorers: [
14492
+ {
14493
+ name: 'Blockscout',
14494
+ url: 'https://wan-red-ain.explorer.mainnet.skalenodes.com',
14495
+ icon: 'human',
14496
+ standard: 'EIP3091'
14497
+ }
14498
+ ]
14499
+ },
14424
14500
  {
14425
14501
  name: 'Aurora Mainnet',
14426
14502
  chain: 'NEAR',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.102",
3
+ "version": "0.0.104",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {