eth-chainlist 0.0.280 → 0.0.281

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.281 (2023-11-11)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.280 ([a1cbcc7](https://github.com/poowf/eth-chainlist/commit/a1cbcc7c803851bdc2b90bd257112daf69bcb827))
9
+ * update chain data ([820171c](https://github.com/poowf/eth-chainlist/commit/820171cf9d77899ff2544431d8bf1939b6fbf6f5))
10
+
3
11
  ### 0.0.280 (2023-11-09)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -7707,6 +7707,25 @@ const chainArray = [
7707
7707
  }
7708
7708
  ]
7709
7709
  },
7710
+ {
7711
+ name: 'Blitz Subnet',
7712
+ chain: 'BLITZ',
7713
+ rpc: [ 'https://subnets.avax.network/blitz/testnet/rpc' ],
7714
+ features: [ { name: 'EIP1559' } ],
7715
+ faucets: [],
7716
+ nativeCurrency: { name: 'BLITZ GAS', symbol: 'BGAS', decimals: 18 },
7717
+ infoURL: 'https://blitz.gg',
7718
+ shortName: 'blitz',
7719
+ chainId: 1343,
7720
+ networkId: 1343,
7721
+ explorers: [
7722
+ {
7723
+ name: 'BLITZ Explorer',
7724
+ url: 'https://subnets-test.avax.network/blitz',
7725
+ standard: 'EIP3091'
7726
+ }
7727
+ ]
7728
+ },
7710
7729
  {
7711
7730
  name: 'CIC Chain Mainnet',
7712
7731
  chain: 'CIC',
@@ -15653,6 +15672,25 @@ const chainArray = [
15653
15672
  }
15654
15673
  ]
15655
15674
  },
15675
+ {
15676
+ name: 'Cloudverse Subnet',
15677
+ chain: 'CLOUDVERSE',
15678
+ rpc: [ 'https://subnets.avax.network/cloudverse/mainnet/rpc' ],
15679
+ features: [ { name: 'EIP1559' } ],
15680
+ faucets: [],
15681
+ nativeCurrency: { name: 'XCLOUD', symbol: 'XCLOUD', decimals: 18 },
15682
+ infoURL: 'https://muadao.build/',
15683
+ shortName: 'cloudverse',
15684
+ chainId: 33210,
15685
+ networkId: 33210,
15686
+ explorers: [
15687
+ {
15688
+ name: 'CLOUDVERSE Explorer',
15689
+ url: 'https://subnets.avax.network/cloudverse',
15690
+ standard: 'EIP3091'
15691
+ }
15692
+ ]
15693
+ },
15656
15694
  {
15657
15695
  name: 'Aves Mainnet',
15658
15696
  chain: 'AVS',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.280",
3
+ "version": "0.0.281",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {