eth-chainlist 0.0.107 → 0.0.108

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.108 (2023-03-23)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.107 ([14ee005](https://github.com/poowf/eth-chainlist/commit/14ee00592d5d8f567380c0142ac09e6465494491))
9
+ * update chain data ([9dafd20](https://github.com/poowf/eth-chainlist/commit/9dafd20045d8f4c6f0d7d3f283f632bb3a608f69))
10
+
3
11
  ### 0.0.107 (2023-03-22)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2276,6 +2276,26 @@ const chainArray = [
2276
2276
  }
2277
2277
  ]
2278
2278
  },
2279
+ {
2280
+ name: 'WoopChain Mainnet',
2281
+ chain: 'WOOP',
2282
+ icon: 'woopchain',
2283
+ rpc: [ 'https://rpc.woop.ai/rpc' ],
2284
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
2285
+ faucets: [],
2286
+ nativeCurrency: { name: 'WoopCoin', symbol: 'WOOC', decimals: 18 },
2287
+ infoURL: 'https://wikiwoop.com',
2288
+ shortName: 'woop',
2289
+ chainId: 139,
2290
+ networkId: 139,
2291
+ explorers: [
2292
+ {
2293
+ name: 'wikiwoop',
2294
+ url: 'https://explorer.wikiwoop.com',
2295
+ standard: 'EIP3091'
2296
+ }
2297
+ ]
2298
+ },
2279
2299
  {
2280
2300
  name: 'Openpiece Testnet',
2281
2301
  chain: 'OPENPIECE',
@@ -4169,7 +4189,7 @@ const chainArray = [
4169
4189
  },
4170
4190
  {
4171
4191
  name: 'Lucid Blockchain',
4172
- chain: 'Lucid Blockchain',
4192
+ chain: 'Lucid',
4173
4193
  icon: 'lucid',
4174
4194
  rpc: [ 'https://rpc.lucidcoin.io' ],
4175
4195
  faucets: [ 'https://faucet.lucidcoin.io' ],
@@ -12697,6 +12717,25 @@ const chainArray = [
12697
12717
  }
12698
12718
  ]
12699
12719
  },
12720
+ {
12721
+ name: 'Taiko (Alpha-2 Testnet)',
12722
+ chain: 'ETH',
12723
+ icon: 'taiko',
12724
+ rpc: [ 'https://rpc.a2.taiko.xyz' ],
12725
+ faucets: [],
12726
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
12727
+ infoURL: 'https://taiko.xyz',
12728
+ shortName: 'taiko-a2',
12729
+ chainId: 167004,
12730
+ networkId: 167004,
12731
+ explorers: [
12732
+ {
12733
+ name: 'blockscout',
12734
+ url: 'https://explorer.a2.taiko.xyz',
12735
+ standard: 'EIP3091'
12736
+ }
12737
+ ]
12738
+ },
12700
12739
  {
12701
12740
  name: 'Condor Test Network',
12702
12741
  chain: 'CONDOR',
@@ -12923,6 +12962,25 @@ const chainArray = [
12923
12962
  }
12924
12963
  ]
12925
12964
  },
12965
+ {
12966
+ name: 'HashKey Chain Testnet',
12967
+ chain: 'HashKey',
12968
+ rpc: [ 'https://testnet.hashkeychain/rpc' ],
12969
+ faucets: [ 'https://testnet.hashkeychain/faucet' ],
12970
+ nativeCurrency: { name: 'HashKey Token', symbol: 'tHSK', decimals: 18 },
12971
+ infoURL: 'https://www.hashkey.com',
12972
+ shortName: 'hsktest',
12973
+ chainId: 230315,
12974
+ networkId: 230315,
12975
+ icon: 'hsk',
12976
+ explorers: [
12977
+ {
12978
+ name: 'HashKey Chain Testnet Explorer',
12979
+ url: 'https://testnet.hashkeyscan.io',
12980
+ standard: 'none'
12981
+ }
12982
+ ]
12983
+ },
12926
12984
  {
12927
12985
  name: 'Haymo Testnet',
12928
12986
  chain: 'tHYM',
@@ -14409,7 +14467,7 @@ const chainArray = [
14409
14467
  chain: 'TEAM',
14410
14468
  rpc: [ 'https://rpc.teamblockchain.team' ],
14411
14469
  faucets: [],
14412
- nativeCurrency: { name: 'TEAM', symbol: '$TEAM', decimals: 8 },
14470
+ nativeCurrency: { name: 'TEAM', symbol: '$TEAM', decimals: 18 },
14413
14471
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
14414
14472
  infoURL: 'https://teamblockchain.team',
14415
14473
  shortName: 'team',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {