eth-chainlist 0.0.798 → 0.0.800

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.800 (2026-08-04)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.799 ([2cb1a45](https://github.com/poowf/eth-chainlist/commit/2cb1a45a1ec461345cc8b369db62e405e5e33fa6))
9
+ * update chain data ([4adfc2d](https://github.com/poowf/eth-chainlist/commit/4adfc2d4ca1c4afba452c0dfc1b32a7acad22127))
10
+
11
+ ### 0.0.799 (2026-08-03)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.798 ([1348453](https://github.com/poowf/eth-chainlist/commit/134845374bdb42bb3dfc4c6d7242e71df3afcc80))
17
+ * update chain data ([8422db8](https://github.com/poowf/eth-chainlist/commit/8422db876517bf495aedbfbf83fe1004606af122))
18
+
3
19
  ### 0.0.798 (2026-08-02)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -11681,6 +11681,26 @@ const chainArray = [
11681
11681
  }
11682
11682
  ]
11683
11683
  },
11684
+ {
11685
+ name: 'Quarrychain Testnet',
11686
+ chain: 'QuarryChain',
11687
+ icon: 'quarrychain',
11688
+ rpc: [ 'https://rpc.testnet.quarrychain.network' ],
11689
+ features: [ { name: 'EIP155' } ],
11690
+ faucets: [],
11691
+ nativeCurrency: { name: 'Quarry', symbol: 'QRY', decimals: 18 },
11692
+ infoURL: 'https://quarrychain.network/',
11693
+ shortName: 'qry',
11694
+ chainId: 1129,
11695
+ networkId: 1129,
11696
+ explorers: [
11697
+ {
11698
+ name: 'QuarryScan',
11699
+ url: 'https://explorer.testnet.quarrychain.network',
11700
+ standard: 'EIP3091'
11701
+ }
11702
+ ]
11703
+ },
11684
11704
  {
11685
11705
  name: 'DeFiChain EVM Network Mainnet',
11686
11706
  chain: 'defichain-evm',
@@ -40278,6 +40298,24 @@ const chainArray = [
40278
40298
  }
40279
40299
  ]
40280
40300
  },
40301
+ {
40302
+ name: 'OmniCoin',
40303
+ chain: 'OmniCoin',
40304
+ rpc: [ 'https://rpc.omnicoin.net' ],
40305
+ faucets: [],
40306
+ nativeCurrency: { name: 'OmniCoin', symbol: 'XOM', decimals: 18 },
40307
+ infoURL: 'https://app.omnibazaar.com',
40308
+ shortName: 'xom',
40309
+ chainId: 88008,
40310
+ networkId: 88008,
40311
+ explorers: [
40312
+ {
40313
+ name: 'OmniCoin Explorer',
40314
+ url: 'https://explorer.omnicoin.net',
40315
+ standard: 'none'
40316
+ }
40317
+ ]
40318
+ },
40281
40319
  {
40282
40320
  name: 'InoAi',
40283
40321
  chain: 'INOAI',
@@ -46635,6 +46673,50 @@ const chainArray = [
46635
46673
  }
46636
46674
  ]
46637
46675
  },
46676
+ {
46677
+ name: 'ONE Chain Testnet',
46678
+ chain: 'ONE',
46679
+ rpc: [
46680
+ 'https://testnet.onechain.nexus:22001',
46681
+ 'wss://testnet.onechain.nexus:32001'
46682
+ ],
46683
+ faucets: [],
46684
+ nativeCurrency: { name: 'TestnetONE', symbol: 'tONE', decimals: 18 },
46685
+ infoURL: 'https://onechain.nexus',
46686
+ shortName: 'tone',
46687
+ chainId: 612044,
46688
+ networkId: 612044,
46689
+ slip44: 1,
46690
+ explorers: [
46691
+ {
46692
+ name: 'ONE Testnet Explorer',
46693
+ url: 'https://explorer.onechain.nexus/612044',
46694
+ standard: 'EIP3091'
46695
+ }
46696
+ ]
46697
+ },
46698
+ {
46699
+ name: 'ONE Chain Mainnet',
46700
+ chain: 'ONE',
46701
+ rpc: [
46702
+ 'https://mainnet.onechain.nexus:22001',
46703
+ 'wss://mainnet.onechain.nexus:32001'
46704
+ ],
46705
+ faucets: [],
46706
+ nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
46707
+ infoURL: 'https://onechain.nexus',
46708
+ shortName: 'one',
46709
+ chainId: 612055,
46710
+ networkId: 612055,
46711
+ slip44: 1100,
46712
+ explorers: [
46713
+ {
46714
+ name: 'ONE Explorer',
46715
+ url: 'https://explorer.onechain.nexus/612055',
46716
+ standard: 'EIP3091'
46717
+ }
46718
+ ]
46719
+ },
46638
46720
  {
46639
46721
  name: 'DJT Testnet',
46640
46722
  chain: 'DJT',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.798",
3
+ "version": "0.0.800",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "lint-staged": {