eth-chainlist 0.0.629 → 0.0.631

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 +162 -23
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.631 (2025-03-06)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.630 ([5ae7df0](https://github.com/poowf/eth-chainlist/commit/5ae7df04e445bcf51a0f7f521368e29191ea1342))
9
+ * update chain data ([b8bbc90](https://github.com/poowf/eth-chainlist/commit/b8bbc90487ac4225fe3ef2f519a6a018c9abffee))
10
+
11
+ ### 0.0.630 (2025-03-05)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.629 ([ff21f18](https://github.com/poowf/eth-chainlist/commit/ff21f186c383f5eabb5c9ca11abfefc08292629c))
17
+ * update chain data ([4f2f83f](https://github.com/poowf/eth-chainlist/commit/4f2f83fffa195c3f9c9264ddd3dd2a2372a1e648))
18
+
3
19
  ### 0.0.629 (2025-03-04)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -5842,6 +5842,32 @@ const chainArray = [
5842
5842
  icon: 'grvt',
5843
5843
  explorers: []
5844
5844
  },
5845
+ {
5846
+ name: 'Telos zkEVM Testnet',
5847
+ title: 'Telos zkEVM Testnet',
5848
+ chain: 'Telos',
5849
+ rpc: [ 'https://zkrpc.testnet.telos.net' ],
5850
+ faucets: [],
5851
+ nativeCurrency: { name: 'Sepolia ETH', symbol: 'ETH', decimals: 18 },
5852
+ infoURL: '',
5853
+ shortName: 'telos-zkevm-testnet',
5854
+ chainId: 331,
5855
+ networkId: 331,
5856
+ icon: 'telos',
5857
+ explorers: [
5858
+ {
5859
+ name: 'TeloScan',
5860
+ icon: 'teloscan',
5861
+ url: 'https://zkexplorer.testnet.telos.net',
5862
+ standard: 'EIP3091'
5863
+ }
5864
+ ],
5865
+ parent: {
5866
+ type: 'L2',
5867
+ chain: 'eip155-11155111',
5868
+ bridges: [ { url: 'https://zkbridge.testnet.telos.net' } ]
5869
+ }
5870
+ },
5845
5871
  {
5846
5872
  name: 'Omax Testnet',
5847
5873
  chain: 'Omax Chain',
@@ -6840,6 +6866,27 @@ const chainArray = [
6840
6866
  networkId: 486,
6841
6867
  status: 'incubating'
6842
6868
  },
6869
+ {
6870
+ name: 'BlackFort Exchange Network',
6871
+ chain: 'BXN',
6872
+ rpc: [ 'https://rpc.blackfort.network/mainnet/rpc' ],
6873
+ faucets: [],
6874
+ nativeCurrency: { name: 'BlackFort Token', symbol: 'BXN', decimals: 18 },
6875
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
6876
+ infoURL: 'https://blackfort.com',
6877
+ shortName: 'BXN',
6878
+ chainId: 488,
6879
+ networkId: 488,
6880
+ icon: 'bxn',
6881
+ explorers: [
6882
+ {
6883
+ name: 'blockscout',
6884
+ url: 'https://blackfortscan.com',
6885
+ icon: 'blockscout',
6886
+ standard: 'EIP3091'
6887
+ }
6888
+ ]
6889
+ },
6843
6890
  {
6844
6891
  name: 'Landstars',
6845
6892
  chain: 'Landstars',
@@ -19325,7 +19372,7 @@ const chainArray = [
19325
19372
  ]
19326
19373
  },
19327
19374
  {
19328
- name: 'BlackFort Exchange Network Testnet',
19375
+ name: 'BlackFort Exchange Network Testnet DEPRECATED',
19329
19376
  chain: 'TBXN',
19330
19377
  rpc: [ 'https://testnet.blackfort.network/rpc' ],
19331
19378
  faucets: [],
@@ -19344,7 +19391,8 @@ const chainArray = [
19344
19391
  icon: 'blockscout',
19345
19392
  standard: 'EIP3091'
19346
19393
  }
19347
- ]
19394
+ ],
19395
+ status: 'deprecated'
19348
19396
  },
19349
19397
  {
19350
19398
  name: 'Evnode Testnet',
@@ -19408,6 +19456,28 @@ const chainArray = [
19408
19456
  }
19409
19457
  ]
19410
19458
  },
19459
+ {
19460
+ name: 'BlackFort Exchange Network Testnet',
19461
+ chain: 'BXNT',
19462
+ rpc: [ 'https://rpc.blackfort.network/testnet/rpc' ],
19463
+ faucets: [],
19464
+ nativeCurrency: { name: 'BlackFort Testnet Token', symbol: 'BXNT', decimals: 18 },
19465
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
19466
+ infoURL: 'https://blackfort.com',
19467
+ shortName: 'BXNT',
19468
+ chainId: 4888,
19469
+ networkId: 4888,
19470
+ slip44: 1,
19471
+ icon: 'bxn',
19472
+ explorers: [
19473
+ {
19474
+ name: 'blockscout',
19475
+ url: 'https://testnet.blackfortscan.com',
19476
+ icon: 'blockscout',
19477
+ standard: 'EIP3091'
19478
+ }
19479
+ ]
19480
+ },
19411
19481
  {
19412
19482
  name: 'Globel Chain',
19413
19483
  chain: 'GC',
@@ -19494,8 +19564,8 @@ const chainArray = [
19494
19564
  ]
19495
19565
  },
19496
19566
  {
19497
- name: 'BlackFort Exchange Network',
19498
- chain: 'BXN',
19567
+ name: 'BlackFort Exchange Network Deprecated',
19568
+ chain: 'BXNdpr',
19499
19569
  rpc: [
19500
19570
  'https://mainnet.blackfort.network/rpc',
19501
19571
  'https://mainnet-1.blackfort.network/rpc',
@@ -19503,10 +19573,10 @@ const chainArray = [
19503
19573
  'https://mainnet-3.blackfort.network/rpc'
19504
19574
  ],
19505
19575
  faucets: [],
19506
- nativeCurrency: { name: 'BlackFort Token', symbol: 'BXN', decimals: 18 },
19576
+ nativeCurrency: { name: 'BlackFort Token', symbol: 'BXNdpr', decimals: 18 },
19507
19577
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
19508
19578
  infoURL: 'https://blackfort.exchange',
19509
- shortName: 'BXN',
19579
+ shortName: 'BXNdpr',
19510
19580
  chainId: 4999,
19511
19581
  networkId: 4999,
19512
19582
  icon: 'bxn',
@@ -19517,7 +19587,8 @@ const chainArray = [
19517
19587
  icon: 'blockscout',
19518
19588
  standard: 'EIP3091'
19519
19589
  }
19520
- ]
19590
+ ],
19591
+ status: 'deprecated'
19521
19592
  },
19522
19593
  {
19523
19594
  name: 'Mantle',
@@ -31090,6 +31161,27 @@ const chainArray = [
31090
31161
  }
31091
31162
  ]
31092
31163
  },
31164
+ {
31165
+ name: 'Juneo Mainnet',
31166
+ chain: 'JUNE-Chain',
31167
+ rpc: [ 'https://rpc.juneo-mainnet.network/ext/bc/JUNE/rpc' ],
31168
+ faucets: [],
31169
+ nativeCurrency: { name: 'JUNE', symbol: 'JUNE', decimals: 18 },
31170
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
31171
+ infoURL: 'https://juneo.com/',
31172
+ shortName: 'JUNE',
31173
+ chainId: 45003,
31174
+ networkId: 45003,
31175
+ icon: 'juneomainnet',
31176
+ explorers: [
31177
+ {
31178
+ name: 'Juneo Scan',
31179
+ url: 'https://juneoscan.io/chain/2',
31180
+ icon: 'juneomainnet',
31181
+ standard: 'none'
31182
+ }
31183
+ ]
31184
+ },
31093
31185
  {
31094
31186
  name: 'Swamps L2',
31095
31187
  chain: 'SWP',
@@ -33996,12 +34088,9 @@ const chainArray = [
33996
34088
  {
33997
34089
  name: 'Berachain bArtio',
33998
34090
  chain: 'Berachain bArtio',
33999
- rpc: [
34000
- 'https://bartio.rpc.berachain.com',
34001
- 'https://bera-testnet.nodeinfra.com',
34002
- 'https://bartio.rpc.b-harvest.io'
34003
- ],
34004
- faucets: [ 'https://bartio.faucet.berachain.com' ],
34091
+ status: 'deprecated',
34092
+ rpc: [],
34093
+ faucets: [],
34005
34094
  nativeCurrency: { name: 'BERA Token', symbol: 'BERA', decimals: 18 },
34006
34095
  infoURL: 'https://www.berachain.com',
34007
34096
  shortName: 'berachainbArtio',
@@ -34989,6 +35078,26 @@ const chainArray = [
34989
35078
  }
34990
35079
  ]
34991
35080
  },
35081
+ {
35082
+ name: 'Miracle Chain',
35083
+ chain: 'MIRACLE',
35084
+ rpc: [ 'https://rpc.miracleplay.io' ],
35085
+ faucets: [],
35086
+ nativeCurrency: { name: 'Miracle Play Token', symbol: 'MPT', decimals: 18 },
35087
+ infoURL: 'https://miracleplay.gg',
35088
+ shortName: 'MIRACLE',
35089
+ chainId: 92278,
35090
+ networkId: 92278,
35091
+ icon: 'miracle',
35092
+ explorers: [
35093
+ {
35094
+ name: 'Miracle Chain Explorer',
35095
+ icon: 'miracle',
35096
+ url: 'https://explorer.miracleplay.io',
35097
+ standard: 'none'
35098
+ }
35099
+ ]
35100
+ },
34992
35101
  {
34993
35102
  name: 'LiquidLayer Testnet',
34994
35103
  chain: 'LILA',
@@ -39841,8 +39950,8 @@ const chainArray = [
39841
39950
  ]
39842
39951
  },
39843
39952
  {
39844
- name: 'Primea Chain Mainnet',
39845
- chain: 'Primea Chain Mainnet',
39953
+ name: 'Primea Network Mainnet',
39954
+ chain: 'Primea Network Mainnet',
39846
39955
  rpc: [
39847
39956
  'http://rpc.primeanetwork.com/rpc-http',
39848
39957
  'https://rpc.primeanetwork.com/rpc-https',
@@ -39850,9 +39959,9 @@ const chainArray = [
39850
39959
  'wss://rpc.primeanetwork.com/rpc-wss'
39851
39960
  ],
39852
39961
  faucets: [],
39853
- nativeCurrency: { name: 'PrimeaCoin', symbol: 'PRIM', decimals: 18 },
39962
+ nativeCurrency: { name: 'GoldPrimeaNetwork', symbol: 'GOLDPN', decimals: 18 },
39854
39963
  infoURL: 'https://primeanetwork.com',
39855
- shortName: 'prim',
39964
+ shortName: 'goldpn',
39856
39965
  chainId: 698369,
39857
39966
  networkId: 698369,
39858
39967
  icon: 'prim',
@@ -39861,10 +39970,10 @@ const chainArray = [
39861
39970
  {
39862
39971
  name: 'Fidesinnova',
39863
39972
  chain: 'Fidesinnova',
39864
- rpc: [ 'https://fidesf1-rpc.fidesinnova.io' ],
39973
+ rpc: [ 'https://rpc1.fidesinnova.io' ],
39865
39974
  faucets: [],
39866
39975
  nativeCurrency: { name: 'Fidesinnova', symbol: 'FDS', decimals: 18 },
39867
- infoURL: 'https://fidesinnova1.gitbook.io/fidesinnova',
39976
+ infoURL: 'https://fidesinnova.gitbook.io/docs',
39868
39977
  shortName: 'Fidesinnova',
39869
39978
  chainId: 706883,
39870
39979
  networkId: 706883,
@@ -41348,8 +41457,8 @@ const chainArray = [
41348
41457
  ]
41349
41458
  },
41350
41459
  {
41351
- name: 'Primea Chain Testnet',
41352
- chain: 'Primea Chain Testnet',
41460
+ name: 'Primea Network Testnet',
41461
+ chain: 'Primea Network Testnet',
41353
41462
  rpc: [
41354
41463
  'http://test-rpc.primeanetwork.com/rpc-http',
41355
41464
  'https://test-rpc.primeanetwork.com/rpc-https',
@@ -41357,9 +41466,9 @@ const chainArray = [
41357
41466
  'wss://test-rpc.primeanetwork.com/rpc-wss'
41358
41467
  ],
41359
41468
  faucets: [],
41360
- nativeCurrency: { name: 'PrimeaCoin Test', symbol: 'PRIM', decimals: 18 },
41469
+ nativeCurrency: { name: 'GoldPrimeaNetwork Test', symbol: 'GOLDPN', decimals: 18 },
41361
41470
  infoURL: 'https://primeanetwork.com',
41362
- shortName: 'test-prim',
41471
+ shortName: 'test-goldpn',
41363
41472
  chainId: 1698369,
41364
41473
  networkId: 1698369,
41365
41474
  icon: 'prim',
@@ -45240,6 +45349,36 @@ const chainArray = [
45240
45349
  bridges: [ { url: 'https://haust-testnet-bridge.eu-north-2.gateway.fm' } ]
45241
45350
  }
45242
45351
  },
45352
+ {
45353
+ name: 'Status Network Sepolia',
45354
+ title: 'Status Network Sepolia',
45355
+ chain: 'ETH',
45356
+ rpc: [
45357
+ 'https://public.sepolia.rpc.status.network',
45358
+ 'wss://status-sepolia-rpc.eu-north-2.gateway.fm/ws'
45359
+ ],
45360
+ faucets: [ 'https://faucet.status.network/' ],
45361
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
45362
+ infoURL: 'https://status.network',
45363
+ shortName: 'sn-sepolia',
45364
+ chainId: 1660990954,
45365
+ networkId: 1660990954,
45366
+ icon: 'sn',
45367
+ parent: {
45368
+ type: 'L2',
45369
+ chain: 'eip155-11155111',
45370
+ bridges: [ { url: 'https://bridge.status.network' } ]
45371
+ },
45372
+ explorers: [
45373
+ {
45374
+ name: 'Blockscout',
45375
+ url: 'https://sepoliascan.status.network',
45376
+ standard: 'EIP3091',
45377
+ icon: 'sn'
45378
+ }
45379
+ ],
45380
+ status: 'active'
45381
+ },
45243
45382
  {
45244
45383
  name: 'Harmony Mainnet Shard 0',
45245
45384
  chain: 'Harmony',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.629",
3
+ "version": "0.0.631",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {