eth-chainlist 0.0.452 → 0.0.453

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.453 (2024-07-28)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.452 ([97f2f7a](https://github.com/poowf/eth-chainlist/commit/97f2f7a655d765f94d7c134956412d55a7663200))
9
+ * update chain data ([b71bbbd](https://github.com/poowf/eth-chainlist/commit/b71bbbdd419708fbc5e64387a5339a3cbe4b3374))
10
+
3
11
  ### 0.0.452 (2024-07-27)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -5603,6 +5603,24 @@ const chainArray = [
5603
5603
  chainId: 385,
5604
5604
  networkId: 385
5605
5605
  },
5606
+ {
5607
+ name: 'Cronos zkEVM Mainnet',
5608
+ chain: 'CronosZkEVMMainnet',
5609
+ rpc: [ 'https://mainnet.zkevm.cronos.org' ],
5610
+ faucets: [],
5611
+ nativeCurrency: { name: 'Cronos zkEVM CRO', symbol: 'zkCRO', decimals: 18 },
5612
+ infoURL: 'https://cronos.org/zkevm',
5613
+ shortName: 'zkCRO',
5614
+ chainId: 388,
5615
+ networkId: 388,
5616
+ explorers: [
5617
+ {
5618
+ name: 'Cronos zkEVM (Mainnet) Chain Explorer',
5619
+ url: 'https://explorer.zkevm.cronos.org',
5620
+ standard: 'none'
5621
+ }
5622
+ ]
5623
+ },
5606
5624
  {
5607
5625
  name: 'CamDL Testnet',
5608
5626
  chain: 'CADL',
@@ -20920,6 +20938,25 @@ const chainArray = [
20920
20938
  }
20921
20939
  ]
20922
20940
  },
20941
+ {
20942
+ name: 'Shape Sepolia Testnet',
20943
+ chain: 'ETH',
20944
+ rpc: [ 'https://sepolia.shape.network' ],
20945
+ faucets: [],
20946
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
20947
+ infoURL: 'https://shape.network',
20948
+ shortName: 'shapesep',
20949
+ chainId: 11011,
20950
+ networkId: 11011,
20951
+ explorers: [
20952
+ {
20953
+ name: 'blockscout',
20954
+ url: 'https://shape-sepolia-explorer.alchemy.com',
20955
+ standard: 'EIP3091'
20956
+ }
20957
+ ],
20958
+ slip44: 1
20959
+ },
20923
20960
  {
20924
20961
  name: 'Astra',
20925
20962
  chain: 'Astra',
@@ -34567,6 +34604,31 @@ const chainArray = [
34567
34604
  }
34568
34605
  ]
34569
34606
  },
34607
+ {
34608
+ name: 'Skopje Testnet',
34609
+ chain: 'Skopje Testnet',
34610
+ icon: 'skopje-gpt',
34611
+ rpc: [ 'https://skopje-rpc.gptprotocol.io' ],
34612
+ faucets: [ 'https://skopje-faucet.gptprotocol.io' ],
34613
+ chainId: 476462898,
34614
+ networkId: 476462898,
34615
+ nativeCurrency: { name: 'SkpGPT', symbol: 'SkpGPT', decimals: 18 },
34616
+ infoURL: 'https://gptprotocol.com',
34617
+ shortName: 'Skopje',
34618
+ parent: {
34619
+ type: 'L2',
34620
+ chain: 'eip155-11155111',
34621
+ bridges: [ { url: 'https://skopje-bridge.gptprotocol.io' } ]
34622
+ },
34623
+ explorers: [
34624
+ {
34625
+ name: 'blockscout',
34626
+ url: 'https://skopje-explorer.gptprotocol.io',
34627
+ standard: 'EIP3091',
34628
+ icon: 'blockscout'
34629
+ }
34630
+ ]
34631
+ },
34570
34632
  {
34571
34633
  name: 'Gather Devnet Network',
34572
34634
  chain: 'GTH',
@@ -34999,6 +35061,31 @@ const chainArray = [
34999
35061
  }
35000
35062
  ]
35001
35063
  },
35064
+ {
35065
+ name: 'GPT Mainnet',
35066
+ chain: 'GPT Protocol',
35067
+ icon: 'gpt',
35068
+ rpc: [ 'https://rpc.gptprotocol.io' ],
35069
+ faucets: [],
35070
+ chainId: 1511670449,
35071
+ networkId: 1511670449,
35072
+ nativeCurrency: { name: 'GPT', symbol: 'GPT', decimals: 18 },
35073
+ infoURL: 'https://gptprotocol.com',
35074
+ shortName: 'GPT',
35075
+ parent: {
35076
+ type: 'L2',
35077
+ chain: 'eip155-1',
35078
+ bridges: [ { url: 'https://bridge.gptprotocol.io' } ]
35079
+ },
35080
+ explorers: [
35081
+ {
35082
+ name: 'blockscout',
35083
+ url: 'https://explorer.gptprotocol.io',
35084
+ standard: 'EIP3091',
35085
+ icon: 'blockscout'
35086
+ }
35087
+ ]
35088
+ },
35002
35089
  {
35003
35090
  name: 'Deprecated SKALE Titan Hub Testnet',
35004
35091
  chain: 'staging-aware-chief-gianfar',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.452",
3
+ "version": "0.0.453",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {