eth-chainlist 0.0.58 → 0.0.59

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.59 (2023-01-18)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.58 ([49a6c9c](https://github.com/poowf/eth-chainlist/commit/49a6c9c322b59f9572954e1eead9795c31d63226))
9
+ * update chain data ([22929e3](https://github.com/poowf/eth-chainlist/commit/22929e32b37937b69122882f5b5305822db26095))
10
+
3
11
  ### 0.0.58 (2023-01-17)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -4382,6 +4382,24 @@ const chainArray = [
4382
4382
  }
4383
4383
  ]
4384
4384
  },
4385
+ {
4386
+ name: 'Proxy Network Testnet',
4387
+ chain: 'Proxy Network',
4388
+ rpc: [ 'http://128.199.94.183:8041' ],
4389
+ faucets: [],
4390
+ nativeCurrency: { name: 'PRX', symbol: 'PRX', decimals: 18 },
4391
+ infoURL: 'https://theproxy.network',
4392
+ shortName: 'prx',
4393
+ chainId: 1031,
4394
+ networkId: 1031,
4395
+ explorers: [
4396
+ {
4397
+ name: 'proxy network testnet',
4398
+ url: 'http://testnet-explorer.theproxy.network',
4399
+ standard: 'EIP3091'
4400
+ }
4401
+ ]
4402
+ },
4385
4403
  {
4386
4404
  name: 'Bronos Testnet',
4387
4405
  chain: 'Bronos',
@@ -5341,6 +5359,26 @@ const chainArray = [
5341
5359
  chainId: 1856,
5342
5360
  networkId: 1
5343
5361
  },
5362
+ {
5363
+ name: 'Gitshock Cartenz Testnet',
5364
+ chain: 'Gitshock Cartenz',
5365
+ icon: 'gitshockchain',
5366
+ rpc: [ 'https://rpc.cartenz.works' ],
5367
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
5368
+ faucets: [],
5369
+ nativeCurrency: { name: 'Gitshock Cartenz', symbol: 'tGTFX', decimals: 18 },
5370
+ infoURL: 'https://gitshock.com',
5371
+ shortName: 'gitshockchain',
5372
+ chainId: 1881,
5373
+ networkId: 1881,
5374
+ explorers: [
5375
+ {
5376
+ name: 'blockscout',
5377
+ url: 'https://scan.cartenz.works',
5378
+ standard: 'EIP3091'
5379
+ }
5380
+ ]
5381
+ },
5344
5382
  {
5345
5383
  name: 'BON Network',
5346
5384
  chain: 'BON',
@@ -9683,6 +9721,33 @@ const chainArray = [
9683
9721
  }
9684
9722
  ]
9685
9723
  },
9724
+ {
9725
+ name: 'Etica Mainnet',
9726
+ chain: 'Etica Protocol (ETI/EGAZ)',
9727
+ icon: 'etica',
9728
+ rpc: [
9729
+ 'https://eticamainnet.eticascan.org',
9730
+ 'https://eticamainnet.eticaprotocol.org'
9731
+ ],
9732
+ faucets: [ 'http://faucet.etica-stats.org/' ],
9733
+ nativeCurrency: { name: 'EGAZ', symbol: 'EGAZ', decimals: 18 },
9734
+ infoURL: 'https://eticaprotocol.org',
9735
+ shortName: 'Etica',
9736
+ chainId: 61803,
9737
+ networkId: 61803,
9738
+ explorers: [
9739
+ {
9740
+ name: 'eticascan',
9741
+ url: 'https://eticascan.org',
9742
+ standard: 'EIP3091'
9743
+ },
9744
+ {
9745
+ name: 'eticastats',
9746
+ url: 'http://explorer.etica-stats.org',
9747
+ standard: 'EIP3091'
9748
+ }
9749
+ ]
9750
+ },
9686
9751
  {
9687
9752
  name: 'DoKEN Super Chain Mainnet',
9688
9753
  chain: 'DoKEN Super Chain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {