eth-chainlist 0.0.171 → 0.0.172

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.172 (2023-06-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.171 ([3735a86](https://github.com/poowf/eth-chainlist/commit/3735a862212ab160a3638c2fa1e5434123fa23b2))
9
+ * update chain data ([62c03a3](https://github.com/poowf/eth-chainlist/commit/62c03a3b0fcb660e6ac9b3dddde04f9f26c79829))
10
+
3
11
  ### 0.0.171 (2023-06-18)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -4703,13 +4703,23 @@ const chainArray = [
4703
4703
  {
4704
4704
  name: 'Patex',
4705
4705
  chain: 'ETH',
4706
+ icon: 'patex',
4706
4707
  rpc: [ 'https://rpc.patex.io/' ],
4707
4708
  faucets: [],
4708
4709
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
4710
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
4709
4711
  infoURL: 'https://patex.io/',
4710
4712
  shortName: 'peth',
4711
4713
  chainId: 789,
4712
- networkId: 789
4714
+ networkId: 789,
4715
+ explorers: [
4716
+ {
4717
+ name: 'patexscan',
4718
+ url: 'https://patexscan.io',
4719
+ icon: 'patex',
4720
+ standard: 'EIP3091'
4721
+ }
4722
+ ]
4713
4723
  },
4714
4724
  {
4715
4725
  name: 'Lucid Blockchain',
@@ -6763,10 +6773,10 @@ const chainArray = [
6763
6773
  {
6764
6774
  name: 'Atheios',
6765
6775
  chain: 'ATH',
6766
- rpc: [ 'https://wallet.atheios.com:8797' ],
6776
+ rpc: [ 'https://rpc.atheios.org/' ],
6767
6777
  faucets: [],
6768
6778
  nativeCurrency: { name: 'Atheios Ether', symbol: 'ATH', decimals: 18 },
6769
- infoURL: 'https://atheios.com',
6779
+ infoURL: 'https://atheios.org',
6770
6780
  shortName: 'ath',
6771
6781
  chainId: 1620,
6772
6782
  networkId: 11235813,
@@ -6810,7 +6820,10 @@ const chainArray = [
6810
6820
  shortName: 'Gobi',
6811
6821
  chain: 'Gobi',
6812
6822
  icon: 'eon',
6813
- rpc: [ 'https://gobi-testnet.horizenlabs.io/ethv1' ],
6823
+ rpc: [
6824
+ 'https://gobi-testnet.horizenlabs.io/ethv1',
6825
+ 'https://rpc.ankr.com/horizen_testnet_evm'
6826
+ ],
6814
6827
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
6815
6828
  faucets: [ 'https://faucet.horizen.io' ],
6816
6829
  nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
@@ -11667,6 +11680,29 @@ const chainArray = [
11667
11680
  }
11668
11681
  ]
11669
11682
  },
11683
+ {
11684
+ name: 'BRC Chain Mainnet',
11685
+ chain: 'BRC',
11686
+ rpc: [ 'https://rpc.brcchain.io' ],
11687
+ faucets: [ 'https://faucet.brcchain.io' ],
11688
+ nativeCurrency: {
11689
+ name: 'BRC Chain mainnet native token',
11690
+ symbol: 'BRC',
11691
+ decimals: 18
11692
+ },
11693
+ infoURL: 'https://bridge.brcchain.io',
11694
+ shortName: 'BRC',
11695
+ chainId: 12123,
11696
+ networkId: 12123,
11697
+ icon: 'brcchain',
11698
+ explorers: [
11699
+ {
11700
+ name: 'BRC Chain Explorer',
11701
+ url: 'https://scan.brcchain.io',
11702
+ standard: 'EIP3091'
11703
+ }
11704
+ ]
11705
+ },
11670
11706
  {
11671
11707
  name: 'Fibonacci Mainnet',
11672
11708
  chain: 'FIBO',
@@ -16535,17 +16571,18 @@ const chainArray = [
16535
16571
  {
16536
16572
  name: 'Zora',
16537
16573
  chain: 'ETH',
16538
- rpc: [ 'https://rpc.zora.co/' ],
16574
+ rpc: [ 'https://rpc.zora.energy/' ],
16539
16575
  faucets: [],
16540
16576
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
16541
- infoURL: 'https://zora.co',
16577
+ icon: 'zora',
16578
+ infoURL: 'https://zora.energy',
16542
16579
  shortName: 'zora',
16543
16580
  chainId: 7777777,
16544
16581
  networkId: 7777777,
16545
16582
  explorers: [
16546
16583
  {
16547
16584
  name: 'Zora Network Explorer',
16548
- url: 'https://explorer.zora.co',
16585
+ url: 'https://explorer.zora.energy',
16549
16586
  standard: 'EIP3091'
16550
16587
  }
16551
16588
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.171",
3
+ "version": "0.0.172",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {