eth-chainlist 0.0.373 → 0.0.375

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 +776 -49
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.375 (2024-04-11)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.374 ([cf4164d](https://github.com/poowf/eth-chainlist/commit/cf4164d3b1af10398d3772d182f38f5a87cf6160))
9
+ * update chain data ([ced4918](https://github.com/poowf/eth-chainlist/commit/ced49184bee074b31bd8afa4de4b2cc6191176e0))
10
+
11
+ ### 0.0.374 (2024-04-10)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.373 ([4ee56d4](https://github.com/poowf/eth-chainlist/commit/4ee56d49cdf54f9cae44eaa31f79e637fce0ac70))
17
+ * update chain data ([6644e76](https://github.com/poowf/eth-chainlist/commit/6644e76ec33c1880f3832f5af365eab7c46aaf92))
18
+
3
19
  ### 0.0.373 (2024-04-09)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -584,6 +584,7 @@ const chainArray = [
584
584
  {
585
585
  name: 'Boba Network Rinkeby Testnet',
586
586
  chain: 'ETH',
587
+ status: 'deprecated',
587
588
  rpc: [ 'https://rinkeby.boba.network/' ],
588
589
  faucets: [],
589
590
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
@@ -3429,17 +3430,17 @@ const chainArray = [
3429
3430
  ]
3430
3431
  },
3431
3432
  {
3432
- name: 'X1 Testnet',
3433
- chain: 'X1',
3434
- rpc: [ 'https://testrpc.x1.tech', 'https://x1testrpc.okx.com' ],
3435
- faucets: [ 'https://www.okx.com/x1/faucet' ],
3433
+ name: 'X Layer Testnet',
3434
+ chain: 'X Layer',
3435
+ rpc: [ 'https://testrpc.xlayer.tech', 'https://xlayertestrpc.okx.com' ],
3436
+ faucets: [ 'https://www.okx.com/xlayer/faucet' ],
3436
3437
  nativeCurrency: {
3437
- name: 'X1 Global Utility Token in testnet',
3438
+ name: 'X Layer Global Utility Token in testnet',
3438
3439
  symbol: 'OKB',
3439
3440
  decimals: 18
3440
3441
  },
3441
3442
  features: [],
3442
- infoURL: 'https://www.okx.com/x1',
3443
+ infoURL: 'https://www.okx.com/xlayer',
3443
3444
  shortName: 'tokb',
3444
3445
  chainId: 195,
3445
3446
  networkId: 195,
@@ -3447,24 +3448,34 @@ const chainArray = [
3447
3448
  explorers: [
3448
3449
  {
3449
3450
  name: 'OKLink',
3450
- url: 'https://www.oklink.com/x1-test',
3451
+ url: 'https://www.oklink.com/xlayer-test',
3451
3452
  standard: 'EIP3091'
3452
3453
  }
3453
3454
  ],
3454
3455
  status: 'active'
3455
3456
  },
3456
3457
  {
3457
- name: 'X1 Mainnet',
3458
- chain: 'X1',
3459
- rpc: [],
3458
+ name: 'X Layer Mainnet',
3459
+ chain: 'X Layer',
3460
+ rpc: [ 'https://rpc.xlayer.tech', 'https://xlayerrpc.okx.com' ],
3460
3461
  faucets: [],
3461
- nativeCurrency: { name: 'X1 Global Utility Token', symbol: 'OKB', decimals: 18 },
3462
+ nativeCurrency: {
3463
+ name: 'X Layer Global Utility Token',
3464
+ symbol: 'OKB',
3465
+ decimals: 18
3466
+ },
3462
3467
  features: [],
3463
- infoURL: 'https://www.okx.com/x1',
3468
+ infoURL: 'https://www.okx.com/xlayer',
3464
3469
  shortName: 'okb',
3465
3470
  chainId: 196,
3466
3471
  networkId: 196,
3467
- explorers: [],
3472
+ explorers: [
3473
+ {
3474
+ name: 'OKLink',
3475
+ url: 'https://www.oklink.com/xlayer',
3476
+ standard: 'EIP3091'
3477
+ }
3478
+ ],
3468
3479
  status: 'incubating'
3469
3480
  },
3470
3481
  {
@@ -3564,6 +3575,25 @@ const chainArray = [
3564
3575
  }
3565
3576
  ]
3566
3577
  },
3578
+ {
3579
+ name: 'Edgeless Testnet',
3580
+ chain: 'EdgelessTestnet',
3581
+ rpc: [ 'https://testnet.rpc.edgeless.network/http' ],
3582
+ features: [ { name: 'EIP155' } ],
3583
+ faucets: [],
3584
+ nativeCurrency: { name: 'Edgeless Wrapped Eth', symbol: 'EwEth', decimals: 18 },
3585
+ infoURL: 'https://edgeless.network',
3586
+ shortName: 'edgeless-testnet',
3587
+ chainId: 202,
3588
+ networkId: 202,
3589
+ explorers: [
3590
+ {
3591
+ name: 'Edgeless Explorer',
3592
+ url: 'https://testnet.explorer.edgeless.network',
3593
+ standard: 'EIP3091'
3594
+ }
3595
+ ]
3596
+ },
3567
3597
  {
3568
3598
  name: 'opBNB Mainnet',
3569
3599
  icon: 'bnbchain',
@@ -4320,11 +4350,6 @@ const chainArray = [
4320
4350
  name: 'Bobascan',
4321
4351
  url: 'https://bobascan.com',
4322
4352
  standard: 'none'
4323
- },
4324
- {
4325
- name: 'Blockscout',
4326
- url: 'https://blockexplorer.boba.network',
4327
- standard: 'none'
4328
4353
  }
4329
4354
  ],
4330
4355
  parent: {
@@ -4508,6 +4533,7 @@ const chainArray = [
4508
4533
  {
4509
4534
  name: 'Bobaopera',
4510
4535
  chain: 'Bobaopera',
4536
+ status: 'deprecated',
4511
4537
  rpc: [
4512
4538
  'https://bobaopera.boba.network',
4513
4539
  'wss://wss.bobaopera.boba.network',
@@ -5223,6 +5249,31 @@ const chainArray = [
5223
5249
  }
5224
5250
  ]
5225
5251
  },
5252
+ {
5253
+ name: 'Syndr L3',
5254
+ chainId: 404,
5255
+ shortName: 'syndr-l3',
5256
+ title: 'Syndr L3 Rollup',
5257
+ chain: 'SYNDR',
5258
+ networkId: 404,
5259
+ icon: 'syndr',
5260
+ rpc: [ 'https://rpc.syndr.com', 'wss://rpc.syndr.com/ws' ],
5261
+ faucets: [],
5262
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5263
+ infoURL: 'https://syndr.com',
5264
+ explorers: [
5265
+ {
5266
+ name: 'Syndr L3 Explorer',
5267
+ url: 'https://explorer.syndr.com',
5268
+ standard: 'EIP3091'
5269
+ }
5270
+ ],
5271
+ parent: {
5272
+ type: 'L2',
5273
+ chain: 'eip155-42161',
5274
+ bridges: [ { url: 'https://bridge.syndr.com' } ]
5275
+ }
5276
+ },
5226
5277
  {
5227
5278
  name: 'Pepe Chain Mainnet',
5228
5279
  chain: 'PC',
@@ -5395,6 +5446,25 @@ const chainArray = [
5395
5446
  }
5396
5447
  ]
5397
5448
  },
5449
+ {
5450
+ name: 'Boyaa Mainnet',
5451
+ chain: 'BYC',
5452
+ rpc: [ 'https://evm-rpc.mainnet.boyaa.network' ],
5453
+ faucets: [],
5454
+ nativeCurrency: { name: 'Boyaa mainnet native coin', symbol: 'BYC', decimals: 18 },
5455
+ infoURL: 'https://boyaa.network',
5456
+ shortName: 'BYC',
5457
+ chainId: 434,
5458
+ networkId: 434,
5459
+ icon: 'boyaanetwork',
5460
+ explorers: [
5461
+ {
5462
+ name: 'Boyaa explorer',
5463
+ url: 'https://explorer.mainnet.boyaa.network',
5464
+ standard: 'EIP3091'
5465
+ }
5466
+ ]
5467
+ },
5398
5468
  {
5399
5469
  name: 'Ten Testnet',
5400
5470
  title: 'Ten Sepolia Rollup Testnet',
@@ -5756,6 +5826,25 @@ const chainArray = [
5756
5826
  }
5757
5827
  ]
5758
5828
  },
5829
+ {
5830
+ name: 'Testnet',
5831
+ chain: 'Flow',
5832
+ rpc: [ 'https://testnet.evm.nodes.onflow.org' ],
5833
+ faucets: [ 'https://testnet-faucet.onflow.org' ],
5834
+ nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
5835
+ infoURL: 'https://developers.flow.com/evm/about',
5836
+ shortName: 'flow-testnet',
5837
+ chainId: 545,
5838
+ networkId: 545,
5839
+ icon: 'flowevm',
5840
+ explorers: [
5841
+ {
5842
+ name: 'Flow Diver',
5843
+ url: 'https://testnet.flowdiver.io',
5844
+ standard: 'none'
5845
+ }
5846
+ ]
5847
+ },
5759
5848
  {
5760
5849
  name: 'Vela1 Chain Mainnet',
5761
5850
  chain: 'VELA1',
@@ -5854,6 +5943,26 @@ const chainArray = [
5854
5943
  }
5855
5944
  ]
5856
5945
  },
5946
+ {
5947
+ name: 'Filenova Mainnet',
5948
+ chain: 'Filenova',
5949
+ rpc: [ 'https://rpc.filenova.org' ],
5950
+ faucets: [],
5951
+ nativeCurrency: { name: 'Filecoin', symbol: 'FIL', decimals: 18 },
5952
+ infoURL: 'https://filenova.org',
5953
+ shortName: 'filenova',
5954
+ chainId: 579,
5955
+ networkId: 579,
5956
+ icon: 'filenova',
5957
+ explorers: [
5958
+ {
5959
+ name: 'filenova explorer',
5960
+ url: 'https://scan.filenova.org',
5961
+ icon: 'filenova',
5962
+ standard: 'none'
5963
+ }
5964
+ ]
5965
+ },
5857
5966
  {
5858
5967
  name: 'Metis Stardust Testnet',
5859
5968
  chain: 'ETH',
@@ -6090,13 +6199,13 @@ const chainArray = [
6090
6199
  ]
6091
6200
  },
6092
6201
  {
6093
- name: 'FlowEVM PreviewNet',
6094
- chain: 'FlowEVM',
6202
+ name: 'Previewnet',
6203
+ chain: 'Flow',
6095
6204
  rpc: [ 'https://previewnet.evm.nodes.onflow.org' ],
6096
6205
  faucets: [ 'https://previewnet-faucet.onflow.org' ],
6097
6206
  nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
6098
6207
  infoURL: 'https://developers.flow.com/evm/about',
6099
- shortName: 'flowevm-preview',
6208
+ shortName: 'flow-previewnet',
6100
6209
  chainId: 646,
6101
6210
  networkId: 646,
6102
6211
  icon: 'flowevm',
@@ -6538,13 +6647,13 @@ const chainArray = [
6538
6647
  ]
6539
6648
  },
6540
6649
  {
6541
- name: 'FlowEVM Mainnet',
6542
- chain: 'FlowEVM',
6650
+ name: 'Mainnet',
6651
+ chain: 'Flow',
6543
6652
  rpc: [ 'https://mainnet.evm.nodes.onflow.org' ],
6544
6653
  faucets: [],
6545
6654
  nativeCurrency: { name: 'FLOW', symbol: 'FLOW', decimals: 18 },
6546
6655
  infoURL: 'https://developers.flow.com/evm/about',
6547
- shortName: 'flowevm-mainnet',
6656
+ shortName: 'flow-mainnet',
6548
6657
  chainId: 747,
6549
6658
  networkId: 747,
6550
6659
  icon: 'flowevm',
@@ -8619,11 +8728,11 @@ const chainArray = [
8619
8728
  },
8620
8729
  {
8621
8730
  name: 'Hybrid Testnet',
8622
- chain: '$HYB',
8731
+ chain: 'HYB',
8623
8732
  icon: 'hybridIcon',
8624
8733
  rpc: [ 'https://testnet-rpc.buildonhybrid.com' ],
8625
8734
  faucets: [],
8626
- nativeCurrency: { name: 'Hybrid', symbol: '$HYB', decimals: 18 },
8735
+ nativeCurrency: { name: 'Hybrid', symbol: 'HYB', decimals: 18 },
8627
8736
  infoURL: 'https://buildonhybrid.com',
8628
8737
  shortName: 'hyb',
8629
8738
  chainId: 1224,
@@ -8631,7 +8740,7 @@ const chainArray = [
8631
8740
  explorers: [
8632
8741
  {
8633
8742
  name: 'Hybrid Testnet',
8634
- url: 'https://alphatestnet.buildonhybrid.com',
8743
+ url: 'https://explorer.buildonhybrid.com',
8635
8744
  standard: 'EIP3091'
8636
8745
  }
8637
8746
  ]
@@ -8960,6 +9069,7 @@ const chainArray = [
8960
9069
  {
8961
9070
  name: 'Bobabeam',
8962
9071
  chain: 'Bobabeam',
9072
+ status: 'deprecated',
8963
9073
  rpc: [
8964
9074
  'https://bobabeam.boba.network',
8965
9075
  'wss://wss.bobabeam.boba.network',
@@ -8983,6 +9093,7 @@ const chainArray = [
8983
9093
  {
8984
9094
  name: 'Bobabase Testnet',
8985
9095
  chain: 'Bobabase Testnet',
9096
+ status: 'deprecated',
8986
9097
  rpc: [
8987
9098
  'https://bobabase.boba.network',
8988
9099
  'wss://wss.bobabase.boba.network',
@@ -10902,6 +11013,25 @@ const chainArray = [
10902
11013
  }
10903
11014
  ]
10904
11015
  },
11016
+ {
11017
+ name: 'Edgeless Network',
11018
+ chain: 'Edgeless',
11019
+ rpc: [ 'https://rpc.edgeless.network/http' ],
11020
+ features: [ { name: 'EIP155' } ],
11021
+ faucets: [],
11022
+ nativeCurrency: { name: 'Edgeless Wrapped Eth', symbol: 'EwEth', decimals: 18 },
11023
+ infoURL: 'https://edgeless.network',
11024
+ shortName: 'edgeless',
11025
+ chainId: 2026,
11026
+ networkId: 2026,
11027
+ explorers: [
11028
+ {
11029
+ name: 'Edgeless Explorer',
11030
+ url: 'https://explorer.edgeless.network',
11031
+ standard: 'EIP3091'
11032
+ }
11033
+ ]
11034
+ },
10905
11035
  {
10906
11036
  name: 'Centrifuge',
10907
11037
  chain: 'CFG',
@@ -11698,6 +11828,25 @@ const chainArray = [
11698
11828
  }
11699
11829
  ]
11700
11830
  },
11831
+ {
11832
+ name: 'Omnia Chain',
11833
+ chain: 'OMNIA',
11834
+ icon: 'omnia',
11835
+ rpc: [ 'https://rpc.omniaverse.io' ],
11836
+ faucets: [ 'https://www.omniaverse.io' ],
11837
+ nativeCurrency: { name: 'Omnia', symbol: 'OMNIA', decimals: 18 },
11838
+ infoURL: 'https://www.omniaverse.io',
11839
+ shortName: 'omnia',
11840
+ chainId: 2342,
11841
+ networkId: 2342,
11842
+ explorers: [
11843
+ {
11844
+ name: 'OmniaVerse Explorer',
11845
+ url: 'https://scan.omniaverse.io',
11846
+ standard: 'EIP3091'
11847
+ }
11848
+ ]
11849
+ },
11701
11850
  {
11702
11851
  name: '(deprecated) Kroma Sepolia',
11703
11852
  title: '(deprecated) Kroma Testnet Sepolia',
@@ -11834,6 +11983,28 @@ const chainArray = [
11834
11983
  }
11835
11984
  ]
11836
11985
  },
11986
+ {
11987
+ name: 'King Of Legends Devnet',
11988
+ title: 'King Of Legends Devnet',
11989
+ chain: 'KOL',
11990
+ icon: 'kol',
11991
+ rpc: [ 'https://rpc-devnet.kinggamer.org/' ],
11992
+ faucets: [],
11993
+ nativeCurrency: { name: 'King Of Legends', symbol: 'KOL', decimals: 18 },
11994
+ infoURL: 'https://kingoflegends.net/',
11995
+ shortName: 'kol',
11996
+ chainId: 2425,
11997
+ networkId: 2425,
11998
+ slip44: 1,
11999
+ explorers: [
12000
+ {
12001
+ name: 'King Of Legends Devnet Explorer',
12002
+ url: 'https://devnet.kingscan.org',
12003
+ icon: 'kol',
12004
+ standard: 'EIP3091'
12005
+ }
12006
+ ]
12007
+ },
11837
12008
  {
11838
12009
  name: 'Polygon zkEVM Cardona Testnet',
11839
12010
  title: 'Polygon zkEVM Cardona Testnet',
@@ -12203,6 +12374,7 @@ const chainArray = [
12203
12374
  {
12204
12375
  name: 'Boba Network Goerli Testnet',
12205
12376
  chain: 'ETH',
12377
+ status: 'deprecated',
12206
12378
  rpc: [
12207
12379
  'https://goerli.boba.network/',
12208
12380
  'wss://wss.goerli.boba.network/'
@@ -12457,6 +12629,30 @@ const chainArray = [
12457
12629
  networkId: 3102,
12458
12630
  explorers: []
12459
12631
  },
12632
+ {
12633
+ name: 'SatoshiVM Alpha Mainnet',
12634
+ chain: 'SatoshiVM',
12635
+ rpc: [ 'https://alpha-rpc-node-http.svmscan.io' ],
12636
+ faucets: [],
12637
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
12638
+ infoURL: 'https://www.satoshivm.io/',
12639
+ shortName: 'SAVM',
12640
+ chainId: 3109,
12641
+ networkId: 3109,
12642
+ icon: 'satoshivm'
12643
+ },
12644
+ {
12645
+ name: 'SatoshiVM Testnet',
12646
+ chain: 'SatoshiVM',
12647
+ rpc: [ 'https://test-rpc-node-http.svmscan.io' ],
12648
+ faucets: [],
12649
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
12650
+ infoURL: 'https://www.satoshivm.io/',
12651
+ shortName: 'tSAVM',
12652
+ chainId: 3110,
12653
+ networkId: 3110,
12654
+ icon: 'satoshivm'
12655
+ },
12460
12656
  {
12461
12657
  name: 'Filecoin - Hyperspace testnet',
12462
12658
  status: 'deprecated',
@@ -13220,6 +13416,7 @@ const chainArray = [
13220
13416
  {
13221
13417
  name: 'Bobaopera Testnet',
13222
13418
  chain: 'Bobaopera Testnet',
13419
+ status: 'deprecated',
13223
13420
  rpc: [
13224
13421
  'https://testnet.bobaopera.boba.network',
13225
13422
  'wss://wss.testnet.bobaopera.boba.network',
@@ -13575,6 +13772,7 @@ const chainArray = [
13575
13772
  {
13576
13773
  name: 'Bobafuji Testnet',
13577
13774
  chain: 'Bobafuji Testnet',
13775
+ status: 'deprecated',
13578
13776
  rpc: [
13579
13777
  'https://testnet.avax.boba.network',
13580
13778
  'wss://wss.testnet.avax.boba.network',
@@ -14483,6 +14681,48 @@ const chainArray = [
14483
14681
  networkId: 5616,
14484
14682
  slip44: 1
14485
14683
  },
14684
+ {
14685
+ name: 'QIE Blockchain',
14686
+ chain: 'QIE',
14687
+ icon: 'qie',
14688
+ rpc: [
14689
+ 'https://rpc-main1.qiblockchain.online/',
14690
+ 'https://rpc-main2.qiblockchain.online/'
14691
+ ],
14692
+ faucets: [],
14693
+ nativeCurrency: { name: 'QIE Blockchain', symbol: 'QIE', decimals: 18 },
14694
+ infoURL: 'https://qiblockchain.online/',
14695
+ shortName: 'QIE',
14696
+ chainId: 5656,
14697
+ networkId: 5656,
14698
+ explorers: [
14699
+ {
14700
+ name: 'QIE Explorer',
14701
+ url: 'https://mainnet.qiblockchain.online',
14702
+ standard: 'EIP3091'
14703
+ }
14704
+ ]
14705
+ },
14706
+ {
14707
+ name: 'Filenova Testnet',
14708
+ chain: 'Filenova',
14709
+ rpc: [ 'https://rpctest.filenova.org' ],
14710
+ faucets: [],
14711
+ nativeCurrency: { name: 'Test Filecoin', symbol: 'tFIL', decimals: 18 },
14712
+ infoURL: 'https://filenova.org',
14713
+ shortName: 'tfilenova',
14714
+ chainId: 5675,
14715
+ networkId: 5675,
14716
+ icon: 'filenova',
14717
+ explorers: [
14718
+ {
14719
+ name: 'filenova testnet explorer',
14720
+ url: 'https://scantest.filenova.org',
14721
+ icon: 'filenova',
14722
+ standard: 'none'
14723
+ }
14724
+ ]
14725
+ },
14486
14726
  {
14487
14727
  name: 'Tanssi EVM ContainerChain',
14488
14728
  chain: 'EVMCC',
@@ -14577,6 +14817,26 @@ const chainArray = [
14577
14817
  slip44: 1,
14578
14818
  explorers: []
14579
14819
  },
14820
+ {
14821
+ name: 'Tangle',
14822
+ chain: 'Tangle',
14823
+ rpc: [ 'https://rpc.tangle.tools', 'wss://rpc.tangle.tools' ],
14824
+ faucets: [],
14825
+ nativeCurrency: { name: 'Tangle', symbol: 'TNT', decimals: 18 },
14826
+ infoURL: 'https://docs.tangle.tools',
14827
+ shortName: 'tangle',
14828
+ chainId: 5845,
14829
+ networkId: 5845,
14830
+ icon: 'tangle',
14831
+ explorers: [
14832
+ {
14833
+ name: 'Tangle EVM Explorer',
14834
+ url: 'https://explorer.tangle.tools',
14835
+ standard: 'EIP3091',
14836
+ icon: 'tangle'
14837
+ }
14838
+ ]
14839
+ },
14580
14840
  {
14581
14841
  name: 'Ontology Testnet',
14582
14842
  chain: 'Ontology',
@@ -14642,6 +14902,24 @@ const chainArray = [
14642
14902
  }
14643
14903
  ]
14644
14904
  },
14905
+ {
14906
+ name: 'BounceBit Mainnet',
14907
+ chain: 'BounceBit',
14908
+ rpc: [ 'https://fullnode-mainnet.bouncebitapi.com/' ],
14909
+ faucets: [],
14910
+ nativeCurrency: { name: 'BounceBit', symbol: 'BB', decimals: 18 },
14911
+ infoURL: 'https://bouncebit.io',
14912
+ shortName: 'bouncebit-mainnet',
14913
+ chainId: 6001,
14914
+ networkId: 6001,
14915
+ explorers: [
14916
+ {
14917
+ name: 'BBScan Mainnet Explorer',
14918
+ url: 'https://bbscan.io',
14919
+ standard: 'none'
14920
+ }
14921
+ ]
14922
+ },
14645
14923
  {
14646
14924
  name: 'Tres Testnet',
14647
14925
  chain: 'TresLeches',
@@ -16900,7 +17178,7 @@ const chainArray = [
16900
17178
  explorers: [
16901
17179
  {
16902
17180
  name: 'Boba BNB Testnet block explorer',
16903
- url: 'https://blockexplorer.testnet.bnb.boba.network',
17181
+ url: 'https://testnet.bobascan.com',
16904
17182
  standard: 'none'
16905
17183
  }
16906
17184
  ],
@@ -17198,6 +17476,17 @@ const chainArray = [
17198
17476
  }
17199
17477
  ]
17200
17478
  },
17479
+ {
17480
+ name: 'Ztc Mainnet',
17481
+ chain: 'ZTC',
17482
+ rpc: [ 'https://zitcoin.us' ],
17483
+ faucets: [],
17484
+ nativeCurrency: { name: 'Ztcer', symbol: 'ZTC', decimals: 5 },
17485
+ infoURL: 'https://ztc.best',
17486
+ shortName: 'ZTC',
17487
+ chainId: 9998,
17488
+ networkId: 9998
17489
+ },
17201
17490
  {
17202
17491
  name: 'myOwn Testnet',
17203
17492
  chain: 'myOwn',
@@ -18214,6 +18503,27 @@ const chainArray = [
18214
18503
  }
18215
18504
  ]
18216
18505
  },
18506
+ {
18507
+ name: 'Kronobit Mainnet',
18508
+ title: 'Kronobit Mainnet',
18509
+ chain: 'KNB',
18510
+ rpc: [ 'https://mainnet-rpc.qbitscan.com' ],
18511
+ faucets: [],
18512
+ nativeCurrency: { name: 'Kronobit', symbol: 'KNB', decimals: 18 },
18513
+ infoURL: 'https://kronobit.org',
18514
+ shortName: 'KNB',
18515
+ chainId: 13600,
18516
+ networkId: 13600,
18517
+ icon: 'kronobit',
18518
+ explorers: [
18519
+ {
18520
+ name: 'qbitscan',
18521
+ url: 'https://explorer.qbitscan.com',
18522
+ icon: 'kronobit',
18523
+ standard: 'EIP3091'
18524
+ }
18525
+ ]
18526
+ },
18217
18527
  {
18218
18528
  name: 'Susono',
18219
18529
  chain: 'SUS',
@@ -18825,6 +19135,27 @@ const chainArray = [
18825
19135
  }
18826
19136
  ]
18827
19137
  },
19138
+ {
19139
+ name: 'Titan (TKX)',
19140
+ chain: 'Titan (TKX)',
19141
+ rpc: [ 'https://titan-json-rpc.titanlab.io' ],
19142
+ faucets: [],
19143
+ nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
19144
+ infoURL: 'https://titanlab.io',
19145
+ shortName: 'titan_tkx',
19146
+ chainId: 18888,
19147
+ networkId: 18888,
19148
+ slip44: 1,
19149
+ icon: 'titan_tkx',
19150
+ explorers: [
19151
+ {
19152
+ name: 'Titan Explorer',
19153
+ url: 'https://titan-explorer-light.titanlab.io/Titan',
19154
+ standard: 'none',
19155
+ icon: 'titan_tkx'
19156
+ }
19157
+ ]
19158
+ },
18828
19159
  {
18829
19160
  name: 'Titan (TKX) Testnet',
18830
19161
  chain: 'Titan (TKX)',
@@ -19273,6 +19604,46 @@ const chainArray = [
19273
19604
  }
19274
19605
  ]
19275
19606
  },
19607
+ {
19608
+ name: 'DreyerX Mainnet',
19609
+ chain: 'DreyerX',
19610
+ rpc: [ 'https://rpc.dreyerx.com' ],
19611
+ faucets: [],
19612
+ nativeCurrency: { name: 'DreyerX', symbol: 'DRX', decimals: 18 },
19613
+ infoURL: 'https://dreyerx.com',
19614
+ shortName: 'dreyerx',
19615
+ chainId: 23451,
19616
+ networkId: 23451,
19617
+ icon: 'dreyerx',
19618
+ explorers: [
19619
+ {
19620
+ name: 'drxscan',
19621
+ url: 'https://scan.dreyerx.com',
19622
+ icon: 'dreyerx',
19623
+ standard: 'EIP3091'
19624
+ }
19625
+ ]
19626
+ },
19627
+ {
19628
+ name: 'DreyerX Testnet',
19629
+ chain: 'DreyerX',
19630
+ rpc: [ 'https://testnet-rpc.dreyerx.com' ],
19631
+ faucets: [],
19632
+ nativeCurrency: { name: 'DreyerX', symbol: 'DRX', decimals: 18 },
19633
+ infoURL: 'https://dreyerx.com',
19634
+ shortName: 'dreyerx-testnet',
19635
+ chainId: 23452,
19636
+ networkId: 23452,
19637
+ icon: 'dreyerx',
19638
+ explorers: [
19639
+ {
19640
+ name: 'drxscan',
19641
+ url: 'https://testnet-scan.dreyerx.com',
19642
+ icon: 'dreyerx',
19643
+ standard: 'EIP3091'
19644
+ }
19645
+ ]
19646
+ },
19276
19647
  {
19277
19648
  name: 'Blast Testnet',
19278
19649
  chain: 'ETH',
@@ -19483,6 +19854,35 @@ const chainArray = [
19483
19854
  }
19484
19855
  ]
19485
19856
  },
19857
+ {
19858
+ name: 'Boba Sepolia',
19859
+ chain: 'ETH',
19860
+ rpc: [
19861
+ 'https://sepolia.boba.network',
19862
+ 'https://boba-sepolia.gateway.tenderly.co',
19863
+ 'https://gateway.tenderly.co/public/boba-sepolia',
19864
+ 'wss://boba-sepolia.gateway.tenderly.co/',
19865
+ 'wss://gateway.tenderly.co/public/boba-sepolia'
19866
+ ],
19867
+ faucets: [ 'https://www.l2faucet.com/boba' ],
19868
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
19869
+ infoURL: 'https://boba.network',
19870
+ shortName: 'BobaSepolia',
19871
+ chainId: 28882,
19872
+ networkId: 28882,
19873
+ explorers: [
19874
+ {
19875
+ name: 'Bobascan',
19876
+ url: 'https://testnet.bobascan.com',
19877
+ standard: 'none'
19878
+ }
19879
+ ],
19880
+ parent: {
19881
+ type: 'L2',
19882
+ chain: 'eip155-1',
19883
+ bridges: [ { url: 'https://gateway.boba.network' } ]
19884
+ }
19885
+ },
19486
19886
  {
19487
19887
  name: 'HYCHAIN Testnet',
19488
19888
  chainId: 29112,
@@ -19504,6 +19904,28 @@ const chainArray = [
19504
19904
  ],
19505
19905
  parent: { type: 'L2', chain: 'eip155-58008', bridges: [] }
19506
19906
  },
19907
+ {
19908
+ name: 'KaiChain Testnet',
19909
+ chain: 'KaiChain',
19910
+ rpc: [ 'https://testnet-rpc.kaichain.net' ],
19911
+ faucets: [ 'https://faucet.kaichain.net' ],
19912
+ nativeCurrency: {
19913
+ name: 'KaiChain Testnet Native Token',
19914
+ symbol: 'KEC',
19915
+ decimals: 18
19916
+ },
19917
+ infoURL: 'https://kaichain.net',
19918
+ shortName: 'tkec',
19919
+ chainId: 29536,
19920
+ networkId: 29536,
19921
+ explorers: [
19922
+ {
19923
+ name: 'KaiChain Explorer',
19924
+ url: 'https://testnet-explorer.kaichain.net',
19925
+ standard: 'EIP3091'
19926
+ }
19927
+ ]
19928
+ },
19507
19929
  {
19508
19930
  name: 'MCH Verse Mainnet',
19509
19931
  chain: 'MCH Verse',
@@ -19856,10 +20278,10 @@ const chainArray = [
19856
20278
  ]
19857
20279
  },
19858
20280
  {
19859
- name: 'Zilliqa 2 EVM Devnet',
20281
+ name: 'Zilliqa-2 EVM Devnet',
19860
20282
  chain: 'ZIL',
19861
- rpc: [ 'https://api.zq2-devnet.zilstg.dev' ],
19862
- faucets: [ 'https://faucet.zq2-devnet.zilstg.dev' ],
20283
+ rpc: [ 'https://api.zq2-devnet.zilliqa.com' ],
20284
+ faucets: [ 'https://faucet.zq2-devnet.zilliqa.com' ],
19863
20285
  nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
19864
20286
  infoURL: 'https://www.zilliqa.com/',
19865
20287
  shortName: 'zq2-devnet',
@@ -19868,8 +20290,8 @@ const chainArray = [
19868
20290
  icon: 'zilliqa',
19869
20291
  explorers: [
19870
20292
  {
19871
- name: 'Zilliqa 2 EVM Devnet Explorer',
19872
- url: 'https://explorer.zq2-devnet.zilstg.dev',
20293
+ name: 'Zilliqa-2 EVM Devnet Explorer',
20294
+ url: 'https://explorer.zq2-devnet.zilliqa.com',
19873
20295
  standard: 'EIP3091'
19874
20296
  }
19875
20297
  ]
@@ -20358,6 +20780,7 @@ const chainArray = [
20358
20780
  {
20359
20781
  name: 'Boba Avax',
20360
20782
  chain: 'Boba Avax',
20783
+ status: 'deprecated',
20361
20784
  rpc: [
20362
20785
  'https://avax.boba.network',
20363
20786
  'wss://wss.avax.boba.network',
@@ -20949,7 +21372,7 @@ const chainArray = [
20949
21372
  explorers: [
20950
21373
  {
20951
21374
  name: 'Boba BNB block explorer',
20952
- url: 'https://blockexplorer.bnb.boba.network',
21375
+ url: 'https://bobascan.com',
20953
21376
  standard: 'none'
20954
21377
  }
20955
21378
  ],
@@ -21051,7 +21474,7 @@ const chainArray = [
21051
21474
  }
21052
21475
  },
21053
21476
  {
21054
- name: 'Linea Testnet',
21477
+ name: 'Linea Goerli',
21055
21478
  title: 'Linea Goerli Testnet',
21056
21479
  chain: 'ETH',
21057
21480
  rpc: [
@@ -21063,7 +21486,7 @@ const chainArray = [
21063
21486
  faucets: [ 'https://faucetlink.to/goerli' ],
21064
21487
  nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
21065
21488
  infoURL: 'https://linea.build',
21066
- shortName: 'linea-testnet',
21489
+ shortName: 'linea-goerli',
21067
21490
  chainId: 59140,
21068
21491
  networkId: 59140,
21069
21492
  slip44: 1,
@@ -21093,6 +21516,45 @@ const chainArray = [
21093
21516
  ],
21094
21517
  status: 'active'
21095
21518
  },
21519
+ {
21520
+ name: 'Linea Sepolia',
21521
+ title: 'Linea Sepolia Testnet',
21522
+ chain: 'ETH',
21523
+ rpc: [
21524
+ 'https://rpc.sepolia.linea.build',
21525
+ 'wss://rpc.sepolia.linea.build',
21526
+ 'https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}',
21527
+ 'wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}'
21528
+ ],
21529
+ faucets: [],
21530
+ nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
21531
+ infoURL: 'https://linea.build',
21532
+ shortName: 'linea-sepolia',
21533
+ chainId: 59141,
21534
+ networkId: 59141,
21535
+ slip44: 1,
21536
+ icon: 'linea',
21537
+ parent: {
21538
+ type: 'L2',
21539
+ chain: 'eip155-5',
21540
+ bridges: [ { url: 'https://bridge.linea.build/' } ]
21541
+ },
21542
+ explorers: [
21543
+ {
21544
+ name: 'Etherscan',
21545
+ url: 'https://sepolia.lineascan.build',
21546
+ standard: 'EIP3091',
21547
+ icon: 'linea'
21548
+ },
21549
+ {
21550
+ name: 'Blockscout',
21551
+ url: 'https://explorer.sepolia.linea.build',
21552
+ standard: 'EIP3091',
21553
+ icon: 'linea'
21554
+ }
21555
+ ],
21556
+ status: 'active'
21557
+ },
21096
21558
  {
21097
21559
  name: 'Linea',
21098
21560
  title: 'Linea Mainnet',
@@ -21233,6 +21695,36 @@ const chainArray = [
21233
21695
  }
21234
21696
  ]
21235
21697
  },
21698
+ {
21699
+ name: 'BOB',
21700
+ chain: 'ETH',
21701
+ rpc: [],
21702
+ faucets: [],
21703
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
21704
+ infoURL: 'https://gobob.xyz',
21705
+ shortName: 'bob',
21706
+ chainId: 60808,
21707
+ networkId: 60808,
21708
+ status: 'incubating'
21709
+ },
21710
+ {
21711
+ name: 'KaiChain',
21712
+ chain: 'KaiChain',
21713
+ rpc: [ 'https://mainnet-rpc.kaichain.net' ],
21714
+ faucets: [],
21715
+ nativeCurrency: { name: 'KaiChain Native Token', symbol: 'KEC', decimals: 18 },
21716
+ infoURL: 'https://kaichain.net',
21717
+ shortName: 'kec',
21718
+ chainId: 61406,
21719
+ networkId: 61406,
21720
+ explorers: [
21721
+ {
21722
+ name: 'KaiChain Explorer',
21723
+ url: 'https://explorer.kaichain.net',
21724
+ standard: 'EIP3091'
21725
+ }
21726
+ ]
21727
+ },
21236
21728
  {
21237
21729
  name: 'AxelChain Dev-Net',
21238
21730
  chain: 'AXEL',
@@ -22088,7 +22580,11 @@ const chainArray = [
22088
22580
  title: 'Polygon Amoy Testnet',
22089
22581
  chain: 'Polygon',
22090
22582
  icon: 'polygon',
22091
- rpc: [ 'https://rpc-amoy.polygon.technology' ],
22583
+ rpc: [
22584
+ 'https://https://rpc-amoy.polygon.technology',
22585
+ 'https://polygon-amoy-bor-rpc.publicnode.com',
22586
+ 'wss://polygon-amoy-bor-rpc.publicnode.com'
22587
+ ],
22092
22588
  faucets: [ 'https://faucet.polygon.technology/' ],
22093
22589
  nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
22094
22590
  infoURL: 'https://polygon.technology/',
@@ -22566,6 +23062,18 @@ const chainArray = [
22566
23062
  }
22567
23063
  ]
22568
23064
  },
23065
+ {
23066
+ name: 'F(x)Core Testnet Network',
23067
+ chain: 'Fxcore',
23068
+ rpc: [ 'https://testnet-fx-json-web3.functionx.io:8545' ],
23069
+ faucets: [],
23070
+ nativeCurrency: { name: 'Function X', symbol: 'FX', decimals: 18 },
23071
+ infoURL: 'https://functionx.io/',
23072
+ shortName: 'dhobyghaut',
23073
+ chainId: 90001,
23074
+ networkId: 90001,
23075
+ icon: 'fxcore'
23076
+ },
22569
23077
  {
22570
23078
  name: 'Beverly Hills',
22571
23079
  title: 'Ethereum multi-client Verkle Testnet Beverly Hills',
@@ -23503,6 +24011,19 @@ const chainArray = [
23503
24011
  }
23504
24012
  ]
23505
24013
  },
24014
+ {
24015
+ name: 'Odyssey Chain (Testnet)',
24016
+ chain: 'DIONE',
24017
+ rpc: [ 'https://testnode.dioneprotocol.com/ext/bc/D/rpc' ],
24018
+ faucets: [ 'https://faucet.dioneprotocol.com/' ],
24019
+ features: [ { name: 'EIP155' } ],
24020
+ infoURL: 'https://www.dioneprotocol.com/',
24021
+ shortName: 'DIONE',
24022
+ chainId: 131313,
24023
+ networkId: 131313,
24024
+ icon: 'odyssey',
24025
+ nativeCurrency: { name: 'DIONE', symbol: 'DIONE', decimals: 18 }
24026
+ },
23506
24027
  {
23507
24028
  name: 'ETND Chain Mainnets',
23508
24029
  chain: 'ETND',
@@ -23648,6 +24169,26 @@ const chainArray = [
23648
24169
  }
23649
24170
  ]
23650
24171
  },
24172
+ {
24173
+ name: 'Taiko Hekla L2',
24174
+ chain: 'ETH',
24175
+ status: 'active',
24176
+ icon: 'taiko',
24177
+ rpc: [ 'https://rpc.hekla.taiko.xyz', 'wss://ws.hekla.taiko.xyz' ],
24178
+ faucets: [],
24179
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
24180
+ infoURL: 'https://taiko.xyz',
24181
+ shortName: 'tko-hekla',
24182
+ chainId: 167009,
24183
+ networkId: 167009,
24184
+ explorers: [
24185
+ {
24186
+ name: 'blockscout',
24187
+ url: 'https://blockscoutapi.hekla.taiko.xyz',
24188
+ standard: 'EIP3091'
24189
+ }
24190
+ ]
24191
+ },
23651
24192
  {
23652
24193
  name: 'Bitica Chain Mainnet',
23653
24194
  chain: 'BDCC',
@@ -23754,7 +24295,7 @@ const chainArray = [
23754
24295
  faucets: [ 'https://www.bitlayer.org/faucet' ],
23755
24296
  nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
23756
24297
  infoURL: 'https://docs.bitlayer.org/',
23757
- shortName: 'Bitlayer',
24298
+ shortName: 'btrt',
23758
24299
  chainId: 200810,
23759
24300
  networkId: 200810,
23760
24301
  slip44: 1,
@@ -23767,6 +24308,32 @@ const chainArray = [
23767
24308
  }
23768
24309
  ]
23769
24310
  },
24311
+ {
24312
+ name: 'Bitlayer Mainnet',
24313
+ chain: 'Bitlayer',
24314
+ rpc: [
24315
+ 'https://rpc.bitlayer.org',
24316
+ 'https://rpc.bitlayer-rpc.com',
24317
+ 'https://rpc.ankr.com/bitlayer',
24318
+ 'wss://ws.bitlayer.org',
24319
+ 'wss://ws.bitlayer-rpc.com'
24320
+ ],
24321
+ faucets: [],
24322
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
24323
+ infoURL: 'https://docs.bitlayer.org/',
24324
+ shortName: 'btr',
24325
+ chainId: 200901,
24326
+ networkId: 200901,
24327
+ slip44: 1,
24328
+ icon: 'bitlayer',
24329
+ explorers: [
24330
+ {
24331
+ name: 'bitlayer mainnet scan',
24332
+ url: 'https://www.btrscan.com',
24333
+ standard: 'EIP3091'
24334
+ }
24335
+ ]
24336
+ },
23770
24337
  {
23771
24338
  name: 'Alaya Mainnet',
23772
24339
  chain: 'Alaya',
@@ -24043,6 +24610,25 @@ const chainArray = [
24043
24610
  }
24044
24611
  ]
24045
24612
  },
24613
+ {
24614
+ name: 'HydraDX',
24615
+ chain: 'HDX',
24616
+ rpc: [ 'https://rpc.hydradx.cloud', 'wss://rpc.hydradx.cloud' ],
24617
+ faucets: [],
24618
+ nativeCurrency: { name: 'Wrapped ETH', symbol: 'WETH', decimals: 18 },
24619
+ infoURL: 'https://hydradx.io',
24620
+ shortName: 'hdx',
24621
+ chainId: 222222,
24622
+ networkId: 222222,
24623
+ icon: 'hydradx',
24624
+ explorers: [
24625
+ {
24626
+ name: 'blockscout',
24627
+ url: 'https://explorer.evm.hydration.cloud',
24628
+ standard: 'EIP3091'
24629
+ }
24630
+ ]
24631
+ },
24046
24632
  {
24047
24633
  name: 'DeepL Mainnet',
24048
24634
  chain: 'DEEPL',
@@ -25017,6 +25603,25 @@ const chainArray = [
25017
25603
  ],
25018
25604
  infoURL: 'https://dischain.xyz'
25019
25605
  },
25606
+ {
25607
+ name: 'DoCoin Community Chain',
25608
+ title: 'DoCoin Community Chain',
25609
+ chain: 'DoCoin',
25610
+ rpc: [ 'https://rpc.docoin.shop' ],
25611
+ faucets: [],
25612
+ nativeCurrency: { name: 'DO', symbol: 'DCT', decimals: 18 },
25613
+ infoURL: 'https://docoin.network',
25614
+ shortName: 'DoCoin',
25615
+ chainId: 526916,
25616
+ networkId: 526916,
25617
+ explorers: [
25618
+ {
25619
+ name: 'DoCoin Community Chain Explorer',
25620
+ url: 'https://explorer.docoin.shop',
25621
+ standard: 'EIP3091'
25622
+ }
25623
+ ]
25624
+ },
25020
25625
  {
25021
25626
  name: 'Scroll Sepolia Testnet',
25022
25627
  chain: 'ETH',
@@ -25039,11 +25644,6 @@ const chainArray = [
25039
25644
  name: 'Scroll Sepolia Etherscan',
25040
25645
  url: 'https://sepolia.scrollscan.com',
25041
25646
  standard: 'EIP3091'
25042
- },
25043
- {
25044
- name: 'Scroll Sepolia Blockscout',
25045
- url: 'https://sepolia-blockscout.scroll.io',
25046
- standard: 'EIP3091'
25047
25647
  }
25048
25648
  ],
25049
25649
  parent: {
@@ -25058,7 +25658,6 @@ const chainArray = [
25058
25658
  status: 'active',
25059
25659
  rpc: [
25060
25660
  'https://rpc.scroll.io',
25061
- 'https://rpc-scroll.icecreamswap.com',
25062
25661
  'https://rpc.ankr.com/scroll',
25063
25662
  'https://scroll-mainnet.chainstacklabs.com'
25064
25663
  ],
@@ -25073,11 +25672,6 @@ const chainArray = [
25073
25672
  name: 'Scrollscan',
25074
25673
  url: 'https://scrollscan.com',
25075
25674
  standard: 'EIP3091'
25076
- },
25077
- {
25078
- name: 'Blockscout',
25079
- url: 'https://blockscout.scroll.io',
25080
- standard: 'EIP3091'
25081
25675
  }
25082
25676
  ],
25083
25677
  parent: {
@@ -25263,6 +25857,25 @@ const chainArray = [
25263
25857
  }
25264
25858
  ]
25265
25859
  },
25860
+ {
25861
+ name: 'Won Network',
25862
+ chainId: 686868,
25863
+ shortName: 'WonChain',
25864
+ chain: 'WON',
25865
+ icon: 'won',
25866
+ networkId: 686868,
25867
+ nativeCurrency: { name: 'Won', symbol: 'WON', decimals: 18 },
25868
+ rpc: [ 'https://rpc.wonnetwork.org' ],
25869
+ faucets: [ 'https://faucet.wondollars.org' ],
25870
+ explorers: [
25871
+ {
25872
+ name: 'Won Explorer',
25873
+ url: 'https://scan.wonnetwork.org',
25874
+ standard: 'EIP3091'
25875
+ }
25876
+ ],
25877
+ infoURL: 'https://wonnetwork.org'
25878
+ },
25266
25879
  {
25267
25880
  name: 'Galadriel Devnet',
25268
25881
  chain: 'Galadriel',
@@ -25432,6 +26045,27 @@ const chainArray = [
25432
26045
  }
25433
26046
  ]
25434
26047
  },
26048
+ {
26049
+ name: 'BIZ Smart Chain Testnet',
26050
+ chain: 'BIZT Testnet',
26051
+ rpc: [ 'https://rpc-testnet.bizex.io/' ],
26052
+ faucets: [],
26053
+ nativeCurrency: { name: 'tBIZT', symbol: 'tBIZT', decimals: 18 },
26054
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
26055
+ infoURL: 'https://www.biztoken.io/',
26056
+ shortName: 'bizt-testnet',
26057
+ chainId: 808080,
26058
+ networkId: 808080,
26059
+ slip44: 1,
26060
+ icon: 'biz',
26061
+ explorers: [
26062
+ {
26063
+ name: 'BIZ Smart Chain Testnet Explorer',
26064
+ url: 'https://testnet.btscan.io',
26065
+ standard: 'EIP3091'
26066
+ }
26067
+ ]
26068
+ },
25435
26069
  {
25436
26070
  name: 'zkLink Nova Mainnet',
25437
26071
  chain: 'ETH',
@@ -25557,6 +26191,25 @@ const chainArray = [
25557
26191
  }
25558
26192
  ]
25559
26193
  },
26194
+ {
26195
+ name: 'REXX Mainnet',
26196
+ title: 'REXX Mainnet',
26197
+ chain: 'REXX',
26198
+ rpc: [ 'https://rpc.rexxnetwork.com' ],
26199
+ faucets: [],
26200
+ nativeCurrency: { name: 'REXX', symbol: 'REXX', decimals: 18 },
26201
+ infoURL: 'https://rexxnetwork.com',
26202
+ shortName: 'REXX',
26203
+ chainId: 888882,
26204
+ networkId: 888882,
26205
+ explorers: [
26206
+ {
26207
+ name: 'REXX Mainnet Explorer',
26208
+ url: 'https://rexxnetwork.com',
26209
+ standard: 'EIP3091'
26210
+ }
26211
+ ]
26212
+ },
25560
26213
  {
25561
26214
  name: 'Vision - Mainnet',
25562
26215
  chain: 'Vision',
@@ -26982,6 +27635,25 @@ const chainArray = [
26982
27635
  }
26983
27636
  ]
26984
27637
  },
27638
+ {
27639
+ name: 'Kingdom Chain',
27640
+ chain: 'KingdomChain',
27641
+ rpc: [ 'https://kingdomchain.observer/rpc' ],
27642
+ features: [ { name: 'EIP155' } ],
27643
+ faucets: [],
27644
+ nativeCurrency: { name: 'Kozi', symbol: 'KOZI', decimals: 18 },
27645
+ infoURL: 'https://www.beastkingdom.io/',
27646
+ shortName: 'kchain',
27647
+ chainId: 39916801,
27648
+ networkId: 39916801,
27649
+ explorers: [
27650
+ {
27651
+ name: 'TravelSong',
27652
+ url: 'https://www.beastkingdom.io/travelsong',
27653
+ standard: 'EIP3091'
27654
+ }
27655
+ ]
27656
+ },
26985
27657
  {
26986
27658
  name: 'maistestsubnet',
26987
27659
  chain: 'MAI',
@@ -27708,6 +28380,25 @@ const chainArray = [
27708
28380
  }
27709
28381
  ]
27710
28382
  },
28383
+ {
28384
+ name: 'PTCESCAN Mainnet',
28385
+ title: 'PTCESCAN Mainnet',
28386
+ chain: 'PTCE',
28387
+ rpc: [ 'https://rpc.ptcscan.io' ],
28388
+ faucets: [],
28389
+ nativeCurrency: { name: 'PTCE', symbol: 'PTCE', decimals: 18 },
28390
+ infoURL: 'https://ptcscan.io',
28391
+ shortName: 'POLYTECH',
28392
+ chainId: 889910246,
28393
+ networkId: 889910246,
28394
+ explorers: [
28395
+ {
28396
+ name: 'PTCESCAN Explorer',
28397
+ url: 'https://ptcscan.io',
28398
+ standard: 'EIP3091'
28399
+ }
28400
+ ]
28401
+ },
27711
28402
  {
27712
28403
  name: 'SKALE Calypso Hub Testnet',
27713
28404
  title: 'SKALE Calypso Hub Testnet',
@@ -27945,6 +28636,24 @@ const chainArray = [
27945
28636
  }
27946
28637
  ]
27947
28638
  },
28639
+ {
28640
+ name: 'RARI Chain Mainnet',
28641
+ chain: 'RARI',
28642
+ rpc: [ 'https://rari.calderachain.xyz/http' ],
28643
+ faucets: [],
28644
+ nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
28645
+ infoURL: 'https://rarichain.org/',
28646
+ shortName: 'rari-mainnet',
28647
+ chainId: 1380012617,
28648
+ networkId: 1380012617,
28649
+ explorers: [
28650
+ {
28651
+ name: 'rarichain-explorer',
28652
+ url: 'https://mainnet.explorer.rarichain.org',
28653
+ standard: 'EIP3091'
28654
+ }
28655
+ ]
28656
+ },
27948
28657
  {
27949
28658
  name: 'RaptorChain',
27950
28659
  chain: 'RPTR',
@@ -28204,6 +28913,24 @@ const chainArray = [
28204
28913
  networkId: 1666900001,
28205
28914
  explorers: []
28206
28915
  },
28916
+ {
28917
+ name: 'RARI Chain Testnet',
28918
+ chain: 'RARI',
28919
+ rpc: [ 'https://testnet.rpc.rarichain.org/http' ],
28920
+ faucets: [],
28921
+ nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
28922
+ infoURL: 'https://rarichain.org/',
28923
+ shortName: 'rari-testnet',
28924
+ chainId: 1918988905,
28925
+ networkId: 1918988905,
28926
+ explorers: [
28927
+ {
28928
+ name: 'rarichain-testnet-explorer',
28929
+ url: 'https://explorer.rarichain.org',
28930
+ standard: 'EIP3091'
28931
+ }
28932
+ ]
28933
+ },
28207
28934
  {
28208
28935
  name: 'DataHopper',
28209
28936
  chain: 'HOP',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.373",
3
+ "version": "0.0.375",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {