eth-chainlist 0.0.362 → 0.0.363

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.363 (2024-03-27)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.362 ([5bfa839](https://github.com/poowf/eth-chainlist/commit/5bfa839643c2ee88bc20ecc5e6663b30d26a7e6c))
9
+ * update chain data ([c138fae](https://github.com/poowf/eth-chainlist/commit/c138fae44d15b9144cb16b6437a40834b26a043f))
10
+
3
11
  ### 0.0.362 (2024-03-22)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2810,23 +2810,25 @@ const chainArray = [
2810
2810
  name: 'Defi Oracle Meta Mainnet',
2811
2811
  chain: 'dfiometa',
2812
2812
  icon: 'defioraclemeta',
2813
- rpc: [
2814
- 'https://rpc.public-0138.defi-oracle.io',
2815
- 'wss://rpc.public-0138.defi-oracle.io'
2816
- ],
2813
+ rpc: [ 'https://rpc.defi-oracle.io', 'wss://wss.defi-oracle.io' ],
2817
2814
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
2818
2815
  faucets: [],
2819
2816
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
2820
- infoURL: 'https://defi-oracle.io/',
2817
+ infoURL: 'https://info.defi-oracle.io/',
2821
2818
  shortName: 'dfio-meta-main',
2822
2819
  chainId: 138,
2823
2820
  networkId: 1,
2824
2821
  slip44: 60,
2825
2822
  ens: { registry: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85' },
2826
2823
  explorers: [
2824
+ {
2825
+ name: 'Blockscout Explorer',
2826
+ url: 'https://blockscout.defi-oracle.io',
2827
+ standard: 'none'
2828
+ },
2827
2829
  {
2828
2830
  name: 'Quorum Explorer',
2829
- url: 'https://public-0138.defi-oracle.io',
2831
+ url: 'https://explorer.defi-oracle.io',
2830
2832
  standard: 'none'
2831
2833
  }
2832
2834
  ]
@@ -21536,6 +21538,25 @@ const chainArray = [
21536
21538
  }
21537
21539
  ]
21538
21540
  },
21541
+ {
21542
+ name: 'Unit Zero Stagenet',
21543
+ chain: 'Unit Zero',
21544
+ rpc: [ 'https://rpc-stagenet.unit0.dev' ],
21545
+ faucets: [],
21546
+ nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
21547
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
21548
+ infoURL: 'https://units.network',
21549
+ shortName: 'unit0-stagenet',
21550
+ chainId: 88819,
21551
+ networkId: 88819,
21552
+ explorers: [
21553
+ {
21554
+ name: 'explorer-stagenet',
21555
+ url: 'https://explorer-stagenet.unit0.dev',
21556
+ standard: 'EIP3091'
21557
+ }
21558
+ ]
21559
+ },
21539
21560
  {
21540
21561
  name: 'Chiliz Scoville Testnet',
21541
21562
  chain: 'CHZ',
@@ -22724,7 +22745,9 @@ const chainArray = [
22724
22745
  chain: 'Bitlayer',
22725
22746
  rpc: [
22726
22747
  'https://testnet-rpc.bitlayer.org',
22727
- 'wss://testnet-ws.bitlayer.org'
22748
+ 'wss://testnet-ws.bitlayer.org',
22749
+ 'https://testnet-rpc.bitlayer-rpc.com',
22750
+ 'wss://testnet-ws.bitlayer-rpc.com'
22728
22751
  ],
22729
22752
  faucets: [ 'https://www.bitlayer.org/faucet' ],
22730
22753
  nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
@@ -22851,6 +22874,24 @@ const chainArray = [
22851
22874
  }
22852
22875
  ]
22853
22876
  },
22877
+ {
22878
+ name: 'YMTECH-BESU Testnet',
22879
+ chain: 'YMTECH-BESU',
22880
+ rpc: [ 'http://39.119.118.216:8545' ],
22881
+ faucets: [],
22882
+ nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
22883
+ infoURL: 'https://www.ymtech.co.kr',
22884
+ shortName: 'YMTECH-BESU',
22885
+ chainId: 202401,
22886
+ networkId: 202401,
22887
+ explorers: [
22888
+ {
22889
+ name: 'YMTECH-BESU Chainlens',
22890
+ url: 'http://39.119.118.198',
22891
+ standard: 'none'
22892
+ }
22893
+ ]
22894
+ },
22854
22895
  {
22855
22896
  name: 'Jellie',
22856
22897
  title: 'Twala Testnet Jellie',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.362",
3
+ "version": "0.0.363",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {