eth-chainlist 0.0.809 → 0.0.811

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +177 -22
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.811 (2026-08-19)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.810 ([147e8e5](https://github.com/poowf/eth-chainlist/commit/147e8e5288414385e9691a06ae7407aa4228b5bd))
9
+ * update chain data ([2379274](https://github.com/poowf/eth-chainlist/commit/237927444d03adeb2f50367178f572016562a81b))
10
+
11
+ ### 0.0.810 (2026-08-17)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.809 ([fec028c](https://github.com/poowf/eth-chainlist/commit/fec028cae5ac49f0ac90949d825ad50dbd4c7f6b))
17
+ * update chain data ([5aa9188](https://github.com/poowf/eth-chainlist/commit/5aa91884118c5288d48110bce23a40a9f4d05012))
18
+
3
19
  ### 0.0.809 (2026-08-16)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3439,19 +3439,24 @@ const chainArray = [
3439
3439
  ]
3440
3440
  },
3441
3441
  {
3442
- name: 'Omni Testnet (Deprecated)',
3443
- chain: 'Omni',
3444
- rpc: [],
3445
- features: [ { name: 'EIP155' } ],
3442
+ name: 'Farm Chain',
3443
+ chain: 'FMC',
3444
+ rpc: [ 'https://rpc.fmcscan.com' ],
3446
3445
  faucets: [],
3447
- nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
3448
- infoURL: 'https://docs.omni.network/',
3449
- shortName: 'omni_testnet_deprecated',
3446
+ nativeCurrency: { name: 'Farm Coin', symbol: 'FMC', decimals: 18 },
3447
+ infoURL: 'https://fmcscan.com',
3448
+ shortName: 'fmc',
3450
3449
  chainId: 165,
3451
3450
  networkId: 165,
3452
- slip44: 1,
3453
- explorers: [],
3454
- status: 'deprecated'
3451
+ redFlags: [ 'reusedChainId' ],
3452
+ slip44: 60,
3453
+ explorers: [
3454
+ {
3455
+ name: 'Farm Chain Explorer',
3456
+ url: 'https://fmcscan.com',
3457
+ standard: 'EIP3091'
3458
+ }
3459
+ ]
3455
3460
  },
3456
3461
  {
3457
3462
  name: 'Nomina',
@@ -23972,6 +23977,27 @@ const chainArray = [
23972
23977
  }
23973
23978
  ]
23974
23979
  },
23980
+ {
23981
+ name: 'YNX Testnet',
23982
+ chain: 'YNX',
23983
+ icon: 'ynx',
23984
+ rpc: [ 'https://evm.ynxweb4.com' ],
23985
+ faucets: [ 'https://www.ynxweb4.com/dapp/faucet' ],
23986
+ nativeCurrency: { name: 'YNXT', symbol: 'YNXT', decimals: 18 },
23987
+ infoURL: 'https://ynxweb4.com',
23988
+ shortName: 'ynxtest',
23989
+ chainId: 6423,
23990
+ networkId: 6423,
23991
+ slip44: 60,
23992
+ explorers: [
23993
+ {
23994
+ name: 'YNX Explorer',
23995
+ url: 'https://explorer.ynxweb4.com',
23996
+ standard: 'EIP3091'
23997
+ }
23998
+ ],
23999
+ features: [ { name: 'EIP155' } ]
24000
+ },
23975
24001
  {
23976
24002
  name: 'MIZUHIKI Testnet Awaji',
23977
24003
  chain: 'MIZU',
@@ -27195,7 +27221,8 @@ const chainArray = [
27195
27221
  standard: 'EIP3091'
27196
27222
  }
27197
27223
  ],
27198
- status: 'active'
27224
+ status: 'active',
27225
+ icon: 'garuda'
27199
27226
  },
27200
27227
  {
27201
27228
  name: 'MARO Blockchain Mainnet',
@@ -27378,23 +27405,35 @@ const chainArray = [
27378
27405
  ]
27379
27406
  },
27380
27407
  {
27381
- name: 'XANAChain',
27382
- chain: 'XANAChain',
27383
- rpc: [ 'https://mainnet.xana.net/rpc' ],
27408
+ name: 'c8ntinuum',
27409
+ chain: 'CTM',
27410
+ rpc: [
27411
+ 'https://rpc.c8ntinuum.com',
27412
+ 'https://rpc.c8ntinuum.io',
27413
+ 'https://rpc.c8ntinuum.link'
27414
+ ],
27384
27415
  faucets: [],
27385
- nativeCurrency: { name: 'XETA', symbol: 'XETA', decimals: 18 },
27386
- infoURL: 'https://xanachain.xana.net/',
27387
- shortName: 'XANAChain',
27416
+ nativeCurrency: { name: 'c8ntinuum', symbol: 'CTM', decimals: 18 },
27417
+ features: [
27418
+ { name: 'EIP155' },
27419
+ { name: 'EIP1559' },
27420
+ { name: 'EIP2930' },
27421
+ { name: 'EIP7702' }
27422
+ ],
27423
+ infoURL: 'https://c8ntinuum.com',
27424
+ shortName: 'ctm',
27388
27425
  chainId: 8888,
27389
27426
  networkId: 8888,
27390
- icon: 'xeta',
27427
+ slip44: 60,
27428
+ icon: 'c8ntinuum',
27391
27429
  explorers: [
27392
27430
  {
27393
- name: 'XANAChain',
27394
- url: 'https://xanachain.xana.net',
27431
+ name: 'CTMScan',
27432
+ url: 'https://ctmscan.io',
27395
27433
  standard: 'EIP3091'
27396
27434
  }
27397
27435
  ],
27436
+ status: 'active',
27398
27437
  redFlags: [ 'reusedChainId' ]
27399
27438
  },
27400
27439
  {
@@ -32535,6 +32574,26 @@ const chainArray = [
32535
32574
  slip44: 1,
32536
32575
  explorers: []
32537
32576
  },
32577
+ {
32578
+ name: 'CHEESE Blockchain Mainnet',
32579
+ chain: 'CHEESE',
32580
+ icon: 'cheese',
32581
+ rpc: [ 'https://cheeseblockchain.com/api/rpc' ],
32582
+ faucets: [],
32583
+ nativeCurrency: { name: 'Native Cheesecoin', symbol: 'NCH', decimals: 18 },
32584
+ features: [ { name: 'EIP155' } ],
32585
+ infoURL: 'https://cheeseblockchain.com',
32586
+ shortName: 'nch',
32587
+ chainId: 20250,
32588
+ networkId: 20250,
32589
+ explorers: [
32590
+ {
32591
+ name: 'CHEESE Blockchain Explorer',
32592
+ url: 'https://cheeseblockchain.com/explorer',
32593
+ standard: 'EIP3091'
32594
+ }
32595
+ ]
32596
+ },
32538
32597
  {
32539
32598
  name: 'MACos Chain',
32540
32599
  chain: 'MACOS',
@@ -33538,6 +33597,25 @@ const chainArray = [
33538
33597
  }
33539
33598
  ]
33540
33599
  },
33600
+ {
33601
+ name: 'Coinbosa Chain',
33602
+ chain: 'BOSA',
33603
+ rpc: [ 'https://explorer.coinbosa.com/rpc' ],
33604
+ faucets: [],
33605
+ nativeCurrency: { name: 'Coinbosa', symbol: 'BOSA', decimals: 18 },
33606
+ infoURL: 'https://coinbosa.com',
33607
+ shortName: 'bosa',
33608
+ chainId: 26262,
33609
+ networkId: 26262,
33610
+ icon: 'coinbosa',
33611
+ explorers: [
33612
+ {
33613
+ name: 'Coinbosa Explorer',
33614
+ url: 'https://explorer.coinbosa.com',
33615
+ standard: 'none'
33616
+ }
33617
+ ]
33618
+ },
33541
33619
  {
33542
33620
  name: 'DucatusX Testnet',
33543
33621
  chain: 'DUCX',
@@ -38946,16 +39024,17 @@ const chainArray = [
38946
39024
  {
38947
39025
  name: 'Animechain Mainnet',
38948
39026
  chain: 'ETH',
38949
- rpc: [],
39027
+ rpc: [ 'https://public-rpc.anime.xyz' ],
38950
39028
  faucets: [],
38951
39029
  nativeCurrency: { name: 'Animecoin', symbol: 'ANIME', decimals: 18 },
38952
39030
  infoURL: 'https://www.anime.xyz',
38953
39031
  shortName: 'anime',
38954
39032
  chainId: 69000,
38955
39033
  networkId: 69000,
39034
+ icon: 'anime',
38956
39035
  explorers: [
38957
39036
  {
38958
- name: 'Animechain explorer',
39037
+ name: 'Animechain Explorer',
38959
39038
  url: 'https://explorer.anime.xyz',
38960
39039
  standard: 'EIP3091'
38961
39040
  }
@@ -40732,6 +40811,25 @@ const chainArray = [
40732
40811
  }
40733
40812
  ]
40734
40813
  },
40814
+ {
40815
+ name: 'Shark Network',
40816
+ chain: 'SHARK',
40817
+ rpc: [ 'https://rpc.rpcshark.com' ],
40818
+ faucets: [],
40819
+ nativeCurrency: { name: 'Shark', symbol: 'SHARK', decimals: 18 },
40820
+ infoURL: 'https://swapshark.net',
40821
+ shortName: 'shark',
40822
+ chainId: 88118,
40823
+ networkId: 88118,
40824
+ icon: 'shark',
40825
+ explorers: [
40826
+ {
40827
+ name: 'SharkScan',
40828
+ url: 'https://sharkscan.app',
40829
+ standard: 'EIP3091'
40830
+ }
40831
+ ]
40832
+ },
40735
40833
  {
40736
40834
  name: 'InoAi',
40737
40835
  chain: 'INOAI',
@@ -43373,6 +43471,25 @@ const chainArray = [
43373
43471
  }
43374
43472
  ]
43375
43473
  },
43474
+ {
43475
+ name: 'WheatCoin Mainnet',
43476
+ chain: 'WHEAT',
43477
+ rpc: [ 'https://rpc.mizodevelopment.com' ],
43478
+ faucets: [],
43479
+ nativeCurrency: { name: 'WheatCoin', symbol: 'WHEAT', decimals: 18 },
43480
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
43481
+ infoURL: 'https://itzlalpekhlua.github.io/WheatCoin-Token/',
43482
+ shortName: 'wheat',
43483
+ chainId: 153043,
43484
+ networkId: 153043,
43485
+ explorers: [
43486
+ {
43487
+ name: 'WheatCoin Explorer',
43488
+ url: 'https://explorer.mizodevelopment.com',
43489
+ standard: 'EIP3091'
43490
+ }
43491
+ ]
43492
+ },
43376
43493
  {
43377
43494
  name: 'Odyssey Chain Mainnet',
43378
43495
  chain: 'DIONE',
@@ -49727,6 +49844,27 @@ const chainArray = [
49727
49844
  icon: 'coti',
49728
49845
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
49729
49846
  },
49847
+ {
49848
+ name: 'Winmar Tech Chain',
49849
+ chain: 'WTC',
49850
+ icon: 'wtc',
49851
+ rpc: [ 'https://winmar.tech/rpc' ],
49852
+ faucets: [ 'https://winmar.tech/faucet' ],
49853
+ nativeCurrency: { name: 'Winmar Tech Chain', symbol: 'WTC', decimals: 18 },
49854
+ infoURL: 'https://winmar.tech',
49855
+ shortName: 'wtc',
49856
+ chainId: 2640162,
49857
+ networkId: 2640162,
49858
+ explorers: [
49859
+ {
49860
+ name: 'Winmar Explorer',
49861
+ url: 'https://winmar.tech/explorer',
49862
+ standard: 'EIP3091'
49863
+ }
49864
+ ],
49865
+ features: [ { name: 'EIP155' } ],
49866
+ status: 'active'
49867
+ },
49730
49868
  {
49731
49869
  name: 'Horizen Testnet',
49732
49870
  chain: 'horizen',
@@ -55695,6 +55833,23 @@ const chainArray = [
55695
55833
  standard: 'EIP3091'
55696
55834
  }
55697
55835
  ]
55836
+ },
55837
+ {
55838
+ name: 'DuckFourFourChain',
55839
+ chain: 'DFFC',
55840
+ icon: 'dffc',
55841
+ rpc: [
55842
+ 'https://main-duckchain.zeninhost.xyz',
55843
+ 'wss://duckfourfourchain-ws.zeninhost.xyz'
55844
+ ],
55845
+ faucets: [],
55846
+ nativeCurrency: { name: 'DuckFourFourCoin', symbol: 'DFFC', decimals: 18 },
55847
+ infoURL: 'https://duckfourfourchain.zeninhost.xyz',
55848
+ shortName: 'dffc',
55849
+ chainId: 2716446429837001,
55850
+ networkId: 2716446429837001,
55851
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
55852
+ explorers: []
55698
55853
  }
55699
55854
  ];
55700
55855
  module.exports = chainArray;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.809",
3
+ "version": "0.0.811",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "lint-staged": {