eth-chainlist 0.0.645 → 0.0.647

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 +495 -48
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.647 (2025-04-10)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.646 ([1f129bb](https://github.com/poowf/eth-chainlist/commit/1f129bbe693af9ff66d69023a64f2893b89c2b78))
9
+ * update chain data ([59b1e34](https://github.com/poowf/eth-chainlist/commit/59b1e341b06eaba4c59fd9dba3cb0bbf6e7ef748))
10
+
11
+ ### 0.0.646 (2025-03-22)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.645 ([b356d91](https://github.com/poowf/eth-chainlist/commit/b356d9131d099eff4191c926cc76200eef996464))
17
+ * update chain data ([3e7d9a5](https://github.com/poowf/eth-chainlist/commit/3e7d9a541a53a34ead00efe468d9fcda4cebca5c))
18
+
3
19
  ### 0.0.645 (2025-03-21)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3892,6 +3892,26 @@ const chainArray = [
3892
3892
  }
3893
3893
  ]
3894
3894
  },
3895
+ {
3896
+ name: 'firachain',
3897
+ chain: 'FIR',
3898
+ icon: 'firachainIcon',
3899
+ rpc: [ 'https://rpc.firachain.com' ],
3900
+ faucets: [],
3901
+ nativeCurrency: { name: 'firachain', symbol: 'FIR', decimals: 18 },
3902
+ infoURL: 'https://firachain.com',
3903
+ shortName: 'FIR',
3904
+ chainId: 194,
3905
+ networkId: 194,
3906
+ status: 'active',
3907
+ explorers: [
3908
+ {
3909
+ name: 'FiraChain Explorer',
3910
+ url: 'https://block.firachain.com',
3911
+ standard: 'EIP3091'
3912
+ }
3913
+ ]
3914
+ },
3895
3915
  {
3896
3916
  name: 'X Layer Testnet',
3897
3917
  chain: 'X Layer',
@@ -4550,7 +4570,7 @@ const chainArray = [
4550
4570
  name: 'Lens',
4551
4571
  title: 'Lens mainnet',
4552
4572
  chain: 'Lens',
4553
- rpc: [],
4573
+ rpc: [ 'https://rpc.lens.xyz' ],
4554
4574
  faucets: [],
4555
4575
  chainId: 232,
4556
4576
  networkId: 232,
@@ -4558,8 +4578,21 @@ const chainArray = [
4558
4578
  icon: 'lens',
4559
4579
  infoURL: 'https://lens.xyz',
4560
4580
  shortName: 'lens',
4561
- parent: { type: 'L2', chain: 'eip155-1', bridges: [] },
4562
- explorers: []
4581
+ parent: {
4582
+ type: 'L2',
4583
+ chain: 'eip155-1',
4584
+ bridges: [
4585
+ { url: 'https://app.across.to/bridge?destinationChainId=232' }
4586
+ ]
4587
+ },
4588
+ explorers: [
4589
+ {
4590
+ name: 'Lens Block Explorer',
4591
+ url: 'https://explorer.lens.xyz',
4592
+ icon: 'lens',
4593
+ standard: 'EIP3091'
4594
+ }
4595
+ ]
4563
4596
  },
4564
4597
  {
4565
4598
  name: 'Ethernity Testnet',
@@ -11084,7 +11117,6 @@ const chainArray = [
11084
11117
  name: 'Cuckoo Chain',
11085
11118
  title: 'Cuckoo Chain',
11086
11119
  chain: 'CuckooAI',
11087
- icon: 'cuckoo-ai',
11088
11120
  rpc: [
11089
11121
  'https://mainnet-rpc.cuckoo.network',
11090
11122
  'wss://mainnet-rpc.cuckoo.network'
@@ -11157,7 +11189,6 @@ const chainArray = [
11157
11189
  name: 'Cuckoo Sepolia',
11158
11190
  title: 'Cuckoo AI Testnet Sepolia',
11159
11191
  chain: 'CuckooAI',
11160
- icon: 'cuckoo-ai',
11161
11192
  rpc: [
11162
11193
  'https://testnet-rpc.cuckoo.network',
11163
11194
  'wss://testnet-rpc.cuckoo.network'
@@ -11168,13 +11199,7 @@ const chainArray = [
11168
11199
  shortName: 'caisepolia',
11169
11200
  chainId: 1210,
11170
11201
  networkId: 1210,
11171
- explorers: [
11172
- {
11173
- name: 'Cuckoo Sepolia Explorer',
11174
- url: 'https://testnet-scan.cuckoo.network',
11175
- standard: 'EIP3091'
11176
- }
11177
- ]
11202
+ explorers: []
11178
11203
  },
11179
11204
  {
11180
11205
  name: 'ADF Chain Testnet',
@@ -13557,7 +13582,6 @@ const chainArray = [
13557
13582
  shortName: 'soneium',
13558
13583
  title: 'Soneium mainnet',
13559
13584
  chain: 'ETH',
13560
- icon: 'soneium',
13561
13585
  rpc: [ 'https://rpc.soneium.org' ],
13562
13586
  faucets: [],
13563
13587
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
@@ -17585,6 +17609,28 @@ const chainArray = [
17585
17609
  slip44: 1,
17586
17610
  status: 'incubating'
17587
17611
  },
17612
+ {
17613
+ name: 'Pentagon Chain',
17614
+ chain: 'Pentagon Chain',
17615
+ rpc: [ 'https://rpc.pentagon.games' ],
17616
+ faucets: [ 'https://bridge.pentagon.games' ],
17617
+ nativeCurrency: { name: 'Pentagon Chain', symbol: 'PC', decimals: 18 },
17618
+ icon: 'pentagonchain',
17619
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
17620
+ infoURL: 'https://pentagon.games',
17621
+ shortName: 'PentagonChain',
17622
+ chainId: 3344,
17623
+ networkId: 3344,
17624
+ explorers: [
17625
+ {
17626
+ name: 'Pentagon Chain Explorer',
17627
+ url: 'https://explorer.pentagon.games',
17628
+ icon: 'pentagonchain',
17629
+ standard: 'EIP3091'
17630
+ }
17631
+ ],
17632
+ status: 'active'
17633
+ },
17588
17634
  {
17589
17635
  name: 'Meroneum',
17590
17636
  chain: 'MERON',
@@ -18053,7 +18099,7 @@ const chainArray = [
18053
18099
  name: 'Xone Mainnet',
18054
18100
  chain: 'XOC',
18055
18101
  icon: 'Xonechain',
18056
- rpc: [ 'https://rpc.xone.org' ],
18102
+ rpc: [ 'https://rpc.xone.org', 'wss://rpc-wss.xone.org' ],
18057
18103
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
18058
18104
  faucets: [ 'https://faucet.xone.org/' ],
18059
18105
  nativeCurrency: { name: 'Xone Coin', symbol: 'XOC', decimals: 18 },
@@ -18128,12 +18174,10 @@ const chainArray = [
18128
18174
  shortName: 'alv',
18129
18175
  chainId: 3797,
18130
18176
  networkId: 3797,
18131
- icon: 'alveychain',
18132
18177
  explorers: [
18133
18178
  {
18134
18179
  name: 'AlveyScan',
18135
18180
  url: 'https://alveyscan.com',
18136
- icon: 'alveychain',
18137
18181
  standard: 'EIP3091'
18138
18182
  }
18139
18183
  ]
@@ -21961,7 +22005,6 @@ const chainArray = [
21961
22005
  {
21962
22006
  name: 'Nexera Mainnet',
21963
22007
  chain: 'Nexera',
21964
- icon: 'nexera',
21965
22008
  chainId: 7208,
21966
22009
  networkId: 7208,
21967
22010
  infoURL: 'https://nexera.network',
@@ -24691,20 +24734,20 @@ const chainArray = [
24691
24734
  ]
24692
24735
  },
24693
24736
  {
24694
- name: 'WeaveVM Testnet',
24695
- chain: 'WVM',
24696
- rpc: [ 'https://testnet.wvm.dev', 'https://testnet-rpc.wvm.dev' ],
24697
- faucets: [],
24698
- nativeCurrency: { name: 'Testnet WeaveVM Token', symbol: 'tWVM', decimals: 18 },
24699
- infoURL: 'https://wvm.dev',
24700
- shortName: 'twvm',
24737
+ name: 'Load Alphanet',
24738
+ chain: 'LOAD',
24739
+ rpc: [ 'https://alphanet.load.network' ],
24740
+ faucets: [ 'https://load.network/faucet' ],
24741
+ nativeCurrency: { name: 'Testnet Load Token', symbol: 'tLOAD', decimals: 18 },
24742
+ infoURL: 'https://load.network',
24743
+ shortName: 'tload',
24701
24744
  chainId: 9496,
24702
24745
  networkId: 9496,
24703
- icon: 'weavevm',
24746
+ icon: 'loadnetwork',
24704
24747
  explorers: [
24705
24748
  {
24706
- name: 'WeaveVM Explorer',
24707
- url: 'https://explorer.wvm.dev',
24749
+ name: 'Load Network Explorer',
24750
+ url: 'https://explorer.load.network',
24708
24751
  standard: 'EIP3091'
24709
24752
  }
24710
24753
  ]
@@ -29204,12 +29247,10 @@ const chainArray = [
29204
29247
  shortName: 'talv',
29205
29248
  chainId: 25839,
29206
29249
  networkId: 25839,
29207
- icon: 'alveychain',
29208
29250
  explorers: [
29209
29251
  {
29210
29252
  name: 'AlveyScan Testnet',
29211
29253
  url: 'https://alveytestnet.com',
29212
- icon: 'alveychain',
29213
29254
  standard: 'EIP3091'
29214
29255
  }
29215
29256
  ]
@@ -29984,7 +30025,6 @@ const chainArray = [
29984
30025
  {
29985
30026
  name: 'Mezo Matsnet Testnet',
29986
30027
  chain: 'Mezo',
29987
- icon: 'mezo',
29988
30028
  rpc: [ 'https://rpc.test.mezo.org' ],
29989
30029
  faucets: [ 'https://mezo.org/matsnet' ],
29990
30030
  nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
@@ -30308,7 +30348,6 @@ const chainArray = [
30308
30348
  shortName: 'apechain',
30309
30349
  chainId: 33139,
30310
30350
  networkId: 33139,
30311
- icon: 'apechain',
30312
30351
  explorers: [
30313
30352
  {
30314
30353
  name: 'ApeChain Explorer',
@@ -31415,8 +31454,8 @@ const chainArray = [
31415
31454
  ]
31416
31455
  },
31417
31456
  {
31418
- name: 'Juneo Mainnet',
31419
- chain: 'JUNE-Chain',
31457
+ name: 'Juneo JUNE-Chain',
31458
+ chain: 'Juneo JUNE-Chain',
31420
31459
  rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/JUNE/rpc' ],
31421
31460
  faucets: [],
31422
31461
  nativeCurrency: { name: 'JUNE', symbol: 'JUNE', decimals: 18 },
@@ -31435,6 +31474,237 @@ const chainArray = [
31435
31474
  }
31436
31475
  ]
31437
31476
  },
31477
+ {
31478
+ name: 'Juneo DAI1-Chain',
31479
+ chain: 'Juneo DAI1-Chain',
31480
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/DAI1/rpc' ],
31481
+ faucets: [],
31482
+ nativeCurrency: { name: 'DAI1', symbol: 'DAI1', decimals: 18 },
31483
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31484
+ infoURL: 'https://juneo.com/',
31485
+ shortName: 'DAI1',
31486
+ chainId: 45004,
31487
+ networkId: 45004,
31488
+ icon: 'juneo-dai1',
31489
+ explorers: [
31490
+ {
31491
+ name: 'Juneo Scan',
31492
+ url: 'https://juneoscan.io/chain/5',
31493
+ icon: 'juneomainnet',
31494
+ standard: 'none'
31495
+ }
31496
+ ]
31497
+ },
31498
+ {
31499
+ name: 'Juneo USDT1-Chain',
31500
+ chain: 'Juneo USDT1-Chain',
31501
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/USDT1/rpc' ],
31502
+ faucets: [],
31503
+ nativeCurrency: { name: 'USDT1', symbol: 'USDT1', decimals: 18 },
31504
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31505
+ infoURL: 'https://juneo.com/',
31506
+ shortName: 'USDT1',
31507
+ chainId: 45005,
31508
+ networkId: 45005,
31509
+ icon: 'juneo-usdt1',
31510
+ explorers: [
31511
+ {
31512
+ name: 'Juneo Scan',
31513
+ url: 'https://juneoscan.io/chain/3',
31514
+ icon: 'juneomainnet',
31515
+ standard: 'none'
31516
+ }
31517
+ ]
31518
+ },
31519
+ {
31520
+ name: 'Juneo USD1-Chain',
31521
+ chain: 'Juneo USD1-Chain',
31522
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/USD1/rpc' ],
31523
+ faucets: [],
31524
+ nativeCurrency: { name: 'USD1', symbol: 'USD1', decimals: 18 },
31525
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31526
+ infoURL: 'https://juneo.com/',
31527
+ shortName: 'USD1',
31528
+ chainId: 45006,
31529
+ networkId: 45006,
31530
+ icon: 'juneo-usd1',
31531
+ explorers: [
31532
+ {
31533
+ name: 'Juneo Scan',
31534
+ url: 'https://juneoscan.io/chain/4',
31535
+ icon: 'juneomainnet',
31536
+ standard: 'none'
31537
+ }
31538
+ ]
31539
+ },
31540
+ {
31541
+ name: 'Juneo mBTC1-Chain',
31542
+ chain: 'Juneo mBTC1-Chain',
31543
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/mBTC1/rpc' ],
31544
+ faucets: [],
31545
+ nativeCurrency: { name: 'mBTC1', symbol: 'mBTC1', decimals: 18 },
31546
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31547
+ infoURL: 'https://juneo.com/',
31548
+ shortName: 'mBTC1',
31549
+ chainId: 45007,
31550
+ networkId: 45007,
31551
+ icon: 'juneo-mbtc1',
31552
+ explorers: [
31553
+ {
31554
+ name: 'Juneo Scan',
31555
+ url: 'https://juneoscan.io/chain/9',
31556
+ icon: 'juneomainnet',
31557
+ standard: 'none'
31558
+ }
31559
+ ]
31560
+ },
31561
+ {
31562
+ name: 'Juneo GLD1-Chain',
31563
+ chain: 'Juneo GLD1-Chain',
31564
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/GLD1/rpc' ],
31565
+ faucets: [],
31566
+ nativeCurrency: { name: 'GLD1', symbol: 'GLD1', decimals: 18 },
31567
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31568
+ infoURL: 'https://juneo.com/',
31569
+ shortName: 'GLD1',
31570
+ chainId: 45008,
31571
+ networkId: 45008,
31572
+ icon: 'juneo-gld1',
31573
+ explorers: [
31574
+ {
31575
+ name: 'Juneo Scan',
31576
+ url: 'https://juneoscan.io/chain/8',
31577
+ icon: 'juneomainnet',
31578
+ standard: 'none'
31579
+ }
31580
+ ]
31581
+ },
31582
+ {
31583
+ name: 'Juneo LTC1-Chain',
31584
+ chain: 'Juneo LTC1-Chain',
31585
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/LTC1/rpc' ],
31586
+ faucets: [],
31587
+ nativeCurrency: { name: 'LTC1', symbol: 'LTC1', decimals: 18 },
31588
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31589
+ infoURL: 'https://juneo.com/',
31590
+ shortName: 'LTC1',
31591
+ chainId: 45009,
31592
+ networkId: 45009,
31593
+ icon: 'juneo-ltc1',
31594
+ explorers: [
31595
+ {
31596
+ name: 'Juneo Scan',
31597
+ url: 'https://juneoscan.io/chain/11',
31598
+ icon: 'juneomainnet',
31599
+ standard: 'none'
31600
+ }
31601
+ ]
31602
+ },
31603
+ {
31604
+ name: 'Juneo DOGE1-Chain',
31605
+ chain: 'Juneo DOGE1-Chain',
31606
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/DOGE1/rpc' ],
31607
+ faucets: [],
31608
+ nativeCurrency: { name: 'DOGE1', symbol: 'DOGE1', decimals: 18 },
31609
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31610
+ infoURL: 'https://juneo.com/',
31611
+ shortName: 'DOGE1',
31612
+ chainId: 45010,
31613
+ networkId: 45010,
31614
+ icon: 'juneo-doge1',
31615
+ explorers: [
31616
+ {
31617
+ name: 'Juneo Scan',
31618
+ url: 'https://juneoscan.io/chain/10',
31619
+ icon: 'juneomainnet',
31620
+ standard: 'none'
31621
+ }
31622
+ ]
31623
+ },
31624
+ {
31625
+ name: 'Juneo EUR1-Chain',
31626
+ chain: 'Juneo EUR1-Chain',
31627
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/EUR1/rpc' ],
31628
+ faucets: [],
31629
+ nativeCurrency: { name: 'EUR1', symbol: 'EUR1', decimals: 18 },
31630
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31631
+ infoURL: 'https://juneo.com/',
31632
+ shortName: 'EUR1',
31633
+ chainId: 45011,
31634
+ networkId: 45011,
31635
+ icon: 'juneo-eur1',
31636
+ explorers: [
31637
+ {
31638
+ name: 'Juneo Scan',
31639
+ url: 'https://juneoscan.io/chain/6',
31640
+ icon: 'juneomainnet',
31641
+ standard: 'none'
31642
+ }
31643
+ ]
31644
+ },
31645
+ {
31646
+ name: 'Juneo SGD1-Chain',
31647
+ chain: 'Juneo SGD1-Chain',
31648
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/SGD1/rpc' ],
31649
+ faucets: [],
31650
+ nativeCurrency: { name: 'SGD1', symbol: 'SGD1', decimals: 18 },
31651
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31652
+ infoURL: 'https://juneo.com/',
31653
+ shortName: 'SGD1',
31654
+ chainId: 45012,
31655
+ networkId: 45012,
31656
+ icon: 'juneo-sgd1',
31657
+ explorers: [
31658
+ {
31659
+ name: 'Juneo Scan',
31660
+ url: 'https://juneoscan.io/chain/7',
31661
+ icon: 'juneomainnet',
31662
+ standard: 'none'
31663
+ }
31664
+ ]
31665
+ },
31666
+ {
31667
+ name: 'Juneo BCH1-Chain',
31668
+ chain: 'Juneo BCH1-Chain',
31669
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/BCH1/rpc' ],
31670
+ faucets: [],
31671
+ nativeCurrency: { name: 'BCH1', symbol: 'BCH1', decimals: 18 },
31672
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31673
+ infoURL: 'https://juneo.com/',
31674
+ shortName: 'BCH1',
31675
+ chainId: 45013,
31676
+ networkId: 45013,
31677
+ icon: 'juneo-bch1',
31678
+ explorers: [
31679
+ {
31680
+ name: 'Juneo Scan',
31681
+ url: 'https://juneoscan.io/chain/12',
31682
+ icon: 'juneomainnet',
31683
+ standard: 'none'
31684
+ }
31685
+ ]
31686
+ },
31687
+ {
31688
+ name: 'Juneo LINK1-Chain',
31689
+ chain: 'Juneo LINK1-Chain',
31690
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/LINK1/rpc' ],
31691
+ faucets: [],
31692
+ nativeCurrency: { name: 'LINK1', symbol: 'LINK1', decimals: 18 },
31693
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31694
+ infoURL: 'https://juneo.com/',
31695
+ shortName: 'LINK1',
31696
+ chainId: 45014,
31697
+ networkId: 45014,
31698
+ icon: 'juneo-link1',
31699
+ explorers: [
31700
+ {
31701
+ name: 'Juneo Scan',
31702
+ url: 'https://juneoscan.io/chain/13',
31703
+ icon: 'juneomainnet',
31704
+ standard: 'none'
31705
+ }
31706
+ ]
31707
+ },
31438
31708
  {
31439
31709
  name: 'Swamps L2',
31440
31710
  chain: 'SWP',
@@ -31884,12 +32154,10 @@ const chainArray = [
31884
32154
  shortName: 'SomniaTestnet',
31885
32155
  chainId: 50312,
31886
32156
  networkId: 50312,
31887
- icon: 'somnia',
31888
32157
  explorers: [
31889
32158
  {
31890
32159
  name: 'Somnia Testnet',
31891
32160
  url: 'https://somnia-testnet.socialscan.io',
31892
- icon: 'somnia',
31893
32161
  standard: 'EIP3091'
31894
32162
  }
31895
32163
  ]
@@ -33689,12 +33957,10 @@ const chainArray = [
33689
33957
  {
33690
33958
  name: 'Proof of Play Apex Explorer',
33691
33959
  url: 'https://explorer.apex.proofofplay.com',
33692
- icon: 'pop-apex',
33693
33960
  standard: 'EIP3091'
33694
33961
  }
33695
33962
  ],
33696
33963
  infoURL: 'https://proofofplay.com',
33697
- icon: 'pop-apex',
33698
33964
  parent: {
33699
33965
  type: 'L2',
33700
33966
  chain: 'eip155-42161',
@@ -33836,7 +34102,6 @@ const chainArray = [
33836
34102
  {
33837
34103
  name: 'Nexera Testnet',
33838
34104
  chain: 'Nexera',
33839
- icon: 'nexera',
33840
34105
  chainId: 72080,
33841
34106
  networkId: 72080,
33842
34107
  infoURL: 'https://testnet.nexera.network',
@@ -36259,6 +36524,27 @@ const chainArray = [
36259
36524
  explorers: [],
36260
36525
  status: 'deprecated'
36261
36526
  },
36527
+ {
36528
+ name: 'Socotra JUNE-Chain',
36529
+ chain: 'Socotra JUNE-Chain',
36530
+ rpc: [ 'https://rpc.socotra-testnet.network/ext/bc/JUNE/rpc' ],
36531
+ faucets: [],
36532
+ nativeCurrency: { name: 'Socotra JUNE', symbol: 'JUNE', decimals: 18 },
36533
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
36534
+ infoURL: 'https://juneo.com/',
36535
+ shortName: 'Socotra-JUNE',
36536
+ chainId: 101003,
36537
+ networkId: 101003,
36538
+ icon: 'juneoSocotraTestnet',
36539
+ explorers: [
36540
+ {
36541
+ name: 'Juneo Scan',
36542
+ url: 'https://socotra.juneoscan.io/chain/2',
36543
+ icon: 'juneomainnet',
36544
+ standard: 'none'
36545
+ }
36546
+ ]
36547
+ },
36262
36548
  {
36263
36549
  name: 'Global Trust Network',
36264
36550
  chain: 'GTN',
@@ -37164,6 +37450,30 @@ const chainArray = [
37164
37450
  explorers: [],
37165
37451
  status: 'incubating'
37166
37452
  },
37453
+ {
37454
+ name: 'Eventum Mainnet',
37455
+ shortName: 'Eventum',
37456
+ chain: 'Eventum',
37457
+ icon: 'eventum',
37458
+ networkId: 161803,
37459
+ chainId: 161803,
37460
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
37461
+ rpc: [ 'https://mainnet-rpc.evedex.com' ],
37462
+ faucets: [],
37463
+ explorers: [
37464
+ {
37465
+ name: 'Eventum Mainnet Explorer',
37466
+ url: 'https://explorer.evedex.com',
37467
+ standard: 'EIP3091'
37468
+ }
37469
+ ],
37470
+ infoURL: 'https://evedex.com',
37471
+ parent: {
37472
+ type: 'L2',
37473
+ chain: 'eip155-1',
37474
+ bridges: [ { url: 'https://bridge.arbitrum.io' } ]
37475
+ }
37476
+ },
37167
37477
  {
37168
37478
  name: 'Eclat Mainnet',
37169
37479
  chain: 'Eclat',
@@ -38000,7 +38310,6 @@ const chainArray = [
38000
38310
  chain: 'SOR',
38001
38311
  rpc: [ 'https://rpc.sorian.io' ],
38002
38312
  faucets: [],
38003
- icon: 'sorian',
38004
38313
  nativeCurrency: { name: 'Sorian', symbol: 'SOR', decimals: 18 },
38005
38314
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
38006
38315
  infoURL: 'https://sorian.io',
@@ -38205,6 +38514,26 @@ const chainArray = [
38205
38514
  }
38206
38515
  ]
38207
38516
  },
38517
+ {
38518
+ name: 'B20 Testnet',
38519
+ chain: 'B20',
38520
+ rpc: [ 'https://rpc.beonescan.com' ],
38521
+ faucets: [ 'https://faucet.beonechain.com/' ],
38522
+ nativeCurrency: { name: 'B20', symbol: 'TBOC', decimals: 18 },
38523
+ infoURL: 'https://rpc.beonescan.com',
38524
+ shortName: 'B20',
38525
+ chainId: 223344,
38526
+ networkId: 223344,
38527
+ icon: 'b20',
38528
+ explorers: [
38529
+ {
38530
+ name: 'beonescan',
38531
+ url: 'https://beonescan.com',
38532
+ icon: 'b20',
38533
+ standard: 'none'
38534
+ }
38535
+ ]
38536
+ },
38208
38537
  {
38209
38538
  name: 'Taf ECO Chain Mainnet',
38210
38539
  chain: 'Taf ECO Chain',
@@ -38590,13 +38919,11 @@ const chainArray = [
38590
38919
  chainId: 272247,
38591
38920
  networkId: 272247,
38592
38921
  slip44: 272247,
38593
- icon: 'nxy',
38594
38922
  explorers: [
38595
38923
  {
38596
38924
  name: 'Nxy Explorer',
38597
38925
  url: 'https://explorer.nxy.social',
38598
- standard: 'none',
38599
- icon: 'nxy'
38926
+ standard: 'none'
38600
38927
  }
38601
38928
  ]
38602
38929
  },
@@ -38611,13 +38938,11 @@ const chainArray = [
38611
38938
  chainId: 272520,
38612
38939
  networkId: 272520,
38613
38940
  slip44: 272520,
38614
- icon: 'nxy',
38615
38941
  explorers: [
38616
38942
  {
38617
38943
  name: 'Nxy Explorer',
38618
38944
  url: 'https://explorer.nxy.social',
38619
- standard: 'none',
38620
- icon: 'nxy'
38945
+ standard: 'none'
38621
38946
  }
38622
38947
  ]
38623
38948
  },
@@ -40816,6 +41141,27 @@ const chainArray = [
40816
41141
  }
40817
41142
  ]
40818
41143
  },
41144
+ {
41145
+ name: 'Winr Protocol Mainnet',
41146
+ chain: 'WINR',
41147
+ rpc: [ 'https://rpc.winr.games' ],
41148
+ faucets: [],
41149
+ nativeCurrency: { name: 'Winr', symbol: 'WINR', decimals: 18 },
41150
+ features: [],
41151
+ infoURL: 'https://winr.games',
41152
+ shortName: 'winr',
41153
+ chainId: 777777,
41154
+ networkId: 777777,
41155
+ icon: 'winr',
41156
+ explorers: [
41157
+ {
41158
+ name: 'Winr Protocol Explorer',
41159
+ url: 'https://explorer.winr.games',
41160
+ icon: 'winr',
41161
+ standard: 'none'
41162
+ }
41163
+ ]
41164
+ },
40819
41165
  {
40820
41166
  name: 'Oone Chain Mainnet',
40821
41167
  chain: 'OONE',
@@ -41906,10 +42252,10 @@ const chainArray = [
41906
42252
  icon: 'xrplevm',
41907
42253
  rpc: [ 'https://rpc.xrplevm.org', 'https://ws.xrplevm.org' ],
41908
42254
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
41909
- faucets: [ 'https://chains.tools/faucet/xrplevm' ],
42255
+ faucets: [ 'https://faucet.xrplevm.org' ],
41910
42256
  nativeCurrency: { name: 'XRP', symbol: 'XRP', decimals: 18 },
41911
42257
  infoURL: 'https://xrplevm.org',
41912
- shortName: 'xrplevm',
42258
+ shortName: 'xrplevmdevnet',
41913
42259
  chainId: 1440002,
41914
42260
  networkId: 1440002,
41915
42261
  explorers: [
@@ -41921,6 +42267,30 @@ const chainArray = [
41921
42267
  }
41922
42268
  ]
41923
42269
  },
42270
+ {
42271
+ name: 'XRPL EVM Sidechain Testnet',
42272
+ chain: 'XRPLEVM Testnet',
42273
+ icon: 'xrplevm',
42274
+ rpc: [
42275
+ 'https://rpc.testnet.xrplevm.org',
42276
+ 'https://ws.testnet.xrplevm.org'
42277
+ ],
42278
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
42279
+ faucets: [ 'https://faucet.xrplevm.org' ],
42280
+ nativeCurrency: { name: 'XRP', symbol: 'XRP', decimals: 18 },
42281
+ infoURL: 'https://xrplevm.org',
42282
+ shortName: 'xrplevmtestnet',
42283
+ chainId: 1449000,
42284
+ networkId: 1449000,
42285
+ explorers: [
42286
+ {
42287
+ name: 'blockscout',
42288
+ url: 'https://explorer.testnet.xrplevm.org',
42289
+ icon: 'xrplevm',
42290
+ standard: 'EIP3091'
42291
+ }
42292
+ ]
42293
+ },
41924
42294
  {
41925
42295
  name: 'Waterfall 9 Test Network',
41926
42296
  chain: 'Waterfall TestNet9',
@@ -44034,7 +44404,8 @@ const chainArray = [
44034
44404
  rpc: [
44035
44405
  'https://rpc-testnet.xone.plus',
44036
44406
  'https://rpc-testnet.xone.org',
44037
- 'https://rpc-testnet.knight.center'
44407
+ 'https://rpc-testnet.knight.center',
44408
+ 'wss://wss-rpc-testnet.xone.org'
44038
44409
  ],
44039
44410
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
44040
44411
  faucets: [ 'https://faucet.xone.org/' ],
@@ -44452,6 +44823,27 @@ const chainArray = [
44452
44823
  }
44453
44824
  ]
44454
44825
  },
44826
+ {
44827
+ name: 'Winr Protocol Testnet',
44828
+ chain: 'WINR',
44829
+ rpc: [ 'https://rpc-devnet.winr.games' ],
44830
+ faucets: [],
44831
+ nativeCurrency: { name: 'Winr', symbol: 'WINR', decimals: 18 },
44832
+ features: [],
44833
+ infoURL: 'https://winr.games',
44834
+ shortName: 'winrtestnet',
44835
+ chainId: 66666666,
44836
+ networkId: 66666666,
44837
+ icon: 'winr',
44838
+ explorers: [
44839
+ {
44840
+ name: 'Winr Protocol Testnet Explorer',
44841
+ url: 'https://explorer-winrprotocoltestnet-wmwv59m23g.t.conduit.xyz',
44842
+ icon: 'winr',
44843
+ standard: 'none'
44844
+ }
44845
+ ]
44846
+ },
44455
44847
  {
44456
44848
  name: 'Frame Testnet',
44457
44849
  chain: 'ETH',
@@ -45265,6 +45657,27 @@ const chainArray = [
45265
45657
  bridges: [ { url: 'https://portal.testnet.sophon.xyz/bridge' } ]
45266
45658
  }
45267
45659
  },
45660
+ {
45661
+ name: 'Smart Mainnet',
45662
+ chain: 'SMART',
45663
+ rpc: [],
45664
+ faucets: [],
45665
+ nativeCurrency: { name: 'Smart', symbol: 'SMART', decimals: 6 },
45666
+ infoURL: 'https://smartblockchain.com',
45667
+ shortName: 'smart',
45668
+ chainId: 661898459,
45669
+ networkId: 661898459,
45670
+ slip44: 783,
45671
+ icon: 'smart',
45672
+ explorers: [
45673
+ {
45674
+ name: 'smartexplorer',
45675
+ url: 'https://smartexplorer.com',
45676
+ icon: 'smart',
45677
+ standard: 'none'
45678
+ }
45679
+ ]
45680
+ },
45268
45681
  {
45269
45682
  name: 'Degen Chain',
45270
45683
  title: 'Degen Chain',
@@ -46342,6 +46755,27 @@ const chainArray = [
46342
46755
  networkId: 3125659152,
46343
46756
  slip44: 164
46344
46757
  },
46758
+ {
46759
+ name: 'Ultima Mainnet',
46760
+ chain: 'ULTIMA',
46761
+ rpc: [],
46762
+ faucets: [],
46763
+ nativeCurrency: { name: 'Ultima', symbol: 'ULTIMA', decimals: 6 },
46764
+ infoURL: 'https://ultima.io',
46765
+ shortName: 'ultima',
46766
+ chainId: 3416255149,
46767
+ networkId: 3416255149,
46768
+ slip44: 785,
46769
+ icon: 'ultima',
46770
+ explorers: [
46771
+ {
46772
+ name: 'ultimachain',
46773
+ url: 'https://ultimachain.info',
46774
+ icon: 'ultima',
46775
+ standard: 'none'
46776
+ }
46777
+ ]
46778
+ },
46345
46779
  {
46346
46780
  name: 'OneLedger Testnet Frankenstein',
46347
46781
  chain: 'OLT',
@@ -46941,6 +47375,19 @@ const chainArray = [
46941
47375
  }
46942
47376
  ]
46943
47377
  },
47378
+ {
47379
+ name: 'Yominet',
47380
+ chain: 'YOMINET',
47381
+ icon: 'yominet',
47382
+ rpc: [ 'https://jsonrpc-yominet-1.anvil.asia-southeast.initia.xyz' ],
47383
+ faucets: [],
47384
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
47385
+ shortName: 'yomi',
47386
+ infoURL: 'https://www.kamigotchi.io/',
47387
+ chainId: 428962654539583,
47388
+ networkId: 428962654539583,
47389
+ explorers: []
47390
+ },
46944
47391
  {
46945
47392
  name: 'Godwoken Testnet (V1)',
46946
47393
  chain: 'GWT',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.645",
3
+ "version": "0.0.647",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {