eth-chainlist 0.0.742 → 0.0.744

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.744 (2026-03-27)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.743 ([46bd215](https://github.com/poowf/eth-chainlist/commit/46bd215557cc35fe6b60566969035d7ebd5a34f6))
9
+ * update chain data ([608f89e](https://github.com/poowf/eth-chainlist/commit/608f89ed8b09a47ae1b1eedd2b72da73ef3c717a))
10
+
11
+ ### 0.0.743 (2026-03-26)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.742 ([a3dfa8b](https://github.com/poowf/eth-chainlist/commit/a3dfa8b52e8ed78aa2f7176d2913344fa8368f29))
17
+ * update chain data ([946dd30](https://github.com/poowf/eth-chainlist/commit/946dd3017f0ea06495bea72e3eb5f4590b3ae6f8))
18
+
3
19
  ### 0.0.742 (2026-03-25)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -16590,6 +16590,7 @@ const chainArray = [
16590
16590
  chain: 'Bitcoin EVM',
16591
16591
  rpc: [ 'https://connect.bitcoinevm.com' ],
16592
16592
  faucets: [],
16593
+ features: [ { name: 'EIP155' } ],
16593
16594
  nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
16594
16595
  infoURL: 'https://bitcoinevm.com',
16595
16596
  shortName: 'BTC',
@@ -16598,12 +16599,13 @@ const chainArray = [
16598
16599
  icon: 'ebtc',
16599
16600
  explorers: [
16600
16601
  {
16601
- name: 'Explorer',
16602
+ name: 'Bitcoin EVM Explorer',
16602
16603
  url: 'https://explorer.bitcoinevm.com',
16603
16604
  icon: 'ebtc',
16604
- standard: 'none'
16605
+ standard: 'EIP3091'
16605
16606
  }
16606
- ]
16607
+ ],
16608
+ status: 'active'
16607
16609
  },
16608
16610
  {
16609
16611
  name: 'Evanesco Mainnet',
@@ -24591,6 +24593,25 @@ const chainArray = [
24591
24593
  }
24592
24594
  ]
24593
24595
  },
24596
+ {
24597
+ name: 'ProbeChain Mainnet',
24598
+ chain: 'PROBE',
24599
+ rpc: [ 'https://proscan.pro/chain/rydberg-rpc' ],
24600
+ faucets: [],
24601
+ nativeCurrency: { name: 'Probe', symbol: 'PROBE', decimals: 18 },
24602
+ features: [ { name: 'EIP155' } ],
24603
+ infoURL: 'https://probechain.org',
24604
+ shortName: 'probe',
24605
+ chainId: 8004,
24606
+ networkId: 8004,
24607
+ explorers: [
24608
+ {
24609
+ name: 'ProScan',
24610
+ url: 'https://proscan.pro/rydberg',
24611
+ standard: 'none'
24612
+ }
24613
+ ]
24614
+ },
24594
24615
  {
24595
24616
  name: 'Polynomial',
24596
24617
  chain: 'Polynomial',
@@ -34516,21 +34537,15 @@ const chainArray = [
34516
34537
  name: 'Zircuit Testnet',
34517
34538
  chain: 'Zircuit Testnet',
34518
34539
  icon: 'zircuit',
34519
- rpc: [ 'https://testnet.zircuit.com' ],
34540
+ rpc: [],
34520
34541
  faucets: [],
34521
34542
  nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
34522
34543
  infoURL: 'https://www.zircuit.com/',
34523
34544
  shortName: 'zircuit-testnet',
34524
34545
  chainId: 48899,
34525
34546
  networkId: 48899,
34526
- explorers: [
34527
- {
34528
- name: 'Zircuit',
34529
- url: 'https://explorer.testnet.zircuit.com',
34530
- icon: 'zircuit',
34531
- standard: 'none'
34532
- }
34533
- ]
34547
+ explorers: [],
34548
+ status: 'deprecated'
34534
34549
  },
34535
34550
  {
34536
34551
  name: 'Zircuit Mainnet',
@@ -48692,6 +48707,25 @@ const chainArray = [
48692
48707
  }
48693
48708
  ]
48694
48709
  },
48710
+ {
48711
+ name: 'Meta Assets Chain',
48712
+ chain: 'MA',
48713
+ icon: 'metaassets',
48714
+ rpc: [ 'https://rpc.ma-chain.xyz' ],
48715
+ faucets: [],
48716
+ nativeCurrency: { name: 'MetaAssets', symbol: 'MA', decimals: 18 },
48717
+ infoURL: 'https://ma-chain.xyz',
48718
+ shortName: 'ma',
48719
+ chainId: 20260131,
48720
+ networkId: 20260131,
48721
+ explorers: [
48722
+ {
48723
+ name: 'Meta Assets Chain Explorer',
48724
+ url: 'https://ma-chain.xyz',
48725
+ standard: 'EIP3091'
48726
+ }
48727
+ ]
48728
+ },
48695
48729
  {
48696
48730
  name: 'Hokum Testnet',
48697
48731
  chain: 'HokumTestnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.742",
3
+ "version": "0.0.744",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "lint-staged": {