eth-chainlist 0.0.504 → 0.0.505

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.505 (2024-10-01)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.504 ([f13d57f](https://github.com/poowf/eth-chainlist/commit/f13d57f1ead21ea313f0a1f1aec8dfd17052338e))
9
+ * update chain data ([6121f31](https://github.com/poowf/eth-chainlist/commit/6121f313d3c7b41ce22430f3d092b665ce3fe129))
10
+
3
11
  ### 0.0.504 (2024-09-29)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -19748,6 +19748,22 @@ const chainArray = [
19748
19748
  chainId: 8098,
19749
19749
  networkId: 8098
19750
19750
  },
19751
+ {
19752
+ name: 'Zenchain',
19753
+ chain: 'ZCX',
19754
+ icon: 'zenchain',
19755
+ rpc: [],
19756
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
19757
+ faucets: [],
19758
+ nativeCurrency: { name: 'ZCX', symbol: 'ZCX', decimals: 18 },
19759
+ infoURL: 'https://zenchain.io',
19760
+ shortName: 'zen',
19761
+ chainId: 8108,
19762
+ networkId: 8108,
19763
+ slip44: 60,
19764
+ explorers: [],
19765
+ status: 'incubating'
19766
+ },
19751
19767
  {
19752
19768
  name: 'Qitmeer Network Testnet',
19753
19769
  chain: 'MEER',
@@ -20032,6 +20048,31 @@ const chainArray = [
20032
20048
  icon: 'dracones',
20033
20049
  explorers: []
20034
20050
  },
20051
+ {
20052
+ name: 'Zenchain Testnet',
20053
+ chain: 'ZCX',
20054
+ icon: 'zenchain',
20055
+ rpc: [
20056
+ 'https://zenchain-testnet.api.onfinality.io/public',
20057
+ 'wss://zenchain-testnet.api.onfinality.io/public-ws'
20058
+ ],
20059
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
20060
+ faucets: [ 'https://facuet.zenchain.io' ],
20061
+ nativeCurrency: { name: 'ZCX', symbol: 'ZCX', decimals: 18 },
20062
+ infoURL: 'https://zenchain.io',
20063
+ shortName: 'zentest',
20064
+ chainId: 8408,
20065
+ networkId: 8408,
20066
+ slip44: 60,
20067
+ explorers: [
20068
+ {
20069
+ name: 'zentrace',
20070
+ url: 'https://zentrace.io',
20071
+ icon: 'blockscout',
20072
+ standard: 'EIP3091'
20073
+ }
20074
+ ]
20075
+ },
20035
20076
  {
20036
20077
  name: 'THAT Mainnet',
20037
20078
  chain: 'THAT',
@@ -26237,6 +26278,25 @@ const chainArray = [
26237
26278
  }
26238
26279
  ]
26239
26280
  },
26281
+ {
26282
+ name: 'Asset Chain Mainnet',
26283
+ chain: 'Asset Chain',
26284
+ rpc: [ 'https://mainnet-rpc.assetchain.org' ],
26285
+ faucets: [ 'https://faucet.assetchain.org' ],
26286
+ nativeCurrency: { name: 'Real World Asset', symbol: 'RWA', decimals: 18 },
26287
+ infoURL: 'https://docs.assetchain.org',
26288
+ shortName: 'assetchain',
26289
+ chainId: 42420,
26290
+ networkId: 42420,
26291
+ icon: 'assetchain',
26292
+ explorers: [
26293
+ {
26294
+ name: 'Asset Chain Explorer',
26295
+ url: 'https://scan.assetchain.org',
26296
+ standard: 'EIP3091'
26297
+ }
26298
+ ]
26299
+ },
26240
26300
  {
26241
26301
  name: 'Asset Chain Testnet',
26242
26302
  chain: 'Asset Chain',
@@ -28411,6 +28471,27 @@ const chainArray = [
28411
28471
  }
28412
28472
  ]
28413
28473
  },
28474
+ {
28475
+ name: 'Wadzchain Testnet',
28476
+ title: 'Wadzchain Testnet',
28477
+ chain: 'Wadzchain-Testnet',
28478
+ icon: 'wadz',
28479
+ rpc: [ 'https://rpc-testnet.wadzchain.io' ],
28480
+ faucets: [ 'https://faucet-testnet.wadzchain.io' ],
28481
+ nativeCurrency: { name: 'WadzToken', symbol: 'WTK', decimals: 18 },
28482
+ infoURL: 'https://www.wadzchain-network.io',
28483
+ shortName: 'wadzchain-testnet',
28484
+ chainId: 71117,
28485
+ networkId: 71117,
28486
+ slip44: 1,
28487
+ explorers: [
28488
+ {
28489
+ name: 'Wadzchain Testnet Explorer',
28490
+ url: 'https://scan-testnet.wadzchain.io',
28491
+ standard: 'EIP3091'
28492
+ }
28493
+ ]
28494
+ },
28414
28495
  {
28415
28496
  name: 'Polyjuice Testnet',
28416
28497
  chain: 'CKB',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.504",
3
+ "version": "0.0.505",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {