eth-chainlist 0.0.78 → 0.0.79

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.79 (2023-02-17)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.78 ([2f6d8e3](https://github.com/poowf/eth-chainlist/commit/2f6d8e3b0bd8bcf2f4990bb554c94b73d836b800))
9
+ * update chain data ([d8e1695](https://github.com/poowf/eth-chainlist/commit/d8e1695903461d35ac63a5bbf01e1aa95e969d8b))
10
+
3
11
  ### 0.0.78 (2023-02-16)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2786,24 +2786,29 @@ const chainArray = [
2786
2786
  ]
2787
2787
  },
2788
2788
  {
2789
- name: 'zkSync alpha testnet',
2789
+ name: 'zkSync Era Testnet',
2790
2790
  chain: 'ETH',
2791
2791
  rpc: [ 'https://zksync2-testnet.zksync.dev' ],
2792
- faucets: [ 'https://portal.zksync.io/faucet' ],
2792
+ faucets: [ 'https://goerli.portal.zksync.io/faucet' ],
2793
2793
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
2794
- infoURL: 'https://v2-docs.zksync.io/',
2794
+ infoURL: 'https://era.zksync.io/docs/',
2795
2795
  shortName: 'zksync-goerli',
2796
2796
  chainId: 280,
2797
2797
  networkId: 280,
2798
- icon: 'ethereum',
2798
+ icon: 'zksync-era',
2799
2799
  explorers: [
2800
2800
  {
2801
- name: 'blockscout',
2802
- url: 'https://zksync2-testnet.zkscan.io',
2803
- icon: 'blockscout',
2801
+ name: 'zkSync Era Block Explorer',
2802
+ url: 'https://goerli.explorer.zksync.io',
2803
+ icon: 'zksync-era',
2804
2804
  standard: 'EIP3091'
2805
2805
  }
2806
- ]
2806
+ ],
2807
+ parent: {
2808
+ type: 'L2',
2809
+ chain: 'eip155-1',
2810
+ bridges: [ { url: 'https://goerli.portal.zksync.io/bridge' } ]
2811
+ }
2807
2812
  },
2808
2813
  {
2809
2814
  name: 'Boba Network',
@@ -2969,25 +2974,29 @@ const chainArray = [
2969
2974
  ]
2970
2975
  },
2971
2976
  {
2972
- name: 'zkSync v2',
2977
+ name: 'zkSync Era Mainnet',
2973
2978
  chain: 'ETH',
2974
- rpc: [],
2979
+ rpc: [ 'https://zksync2-mainnet.zksync.io' ],
2975
2980
  faucets: [],
2976
2981
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
2977
2982
  infoURL: 'https://zksync.io/',
2978
2983
  shortName: 'zksync',
2979
2984
  chainId: 324,
2980
2985
  networkId: 324,
2981
- icon: 'ethereum',
2986
+ icon: 'zksync-era',
2982
2987
  explorers: [
2983
2988
  {
2984
- name: 'zkSync v2 Block Explorer',
2989
+ name: 'zkSync Era Block Explorer',
2985
2990
  url: 'https://explorer.zksync.io',
2991
+ icon: 'zksync-era',
2986
2992
  standard: 'EIP3091'
2987
2993
  }
2988
2994
  ],
2989
- parent: { type: 'L2', chain: 'eip155-1', bridges: [] },
2990
- status: 'incubating'
2995
+ parent: {
2996
+ type: 'L2',
2997
+ chain: 'eip155-1',
2998
+ bridges: [ { url: 'https://portal.zksync.io/bridge' } ]
2999
+ }
2991
3000
  },
2992
3001
  {
2993
3002
  name: 'Web3Q Mainnet',
@@ -4862,6 +4871,25 @@ const chainArray = [
4862
4871
  icon: 'defichain-network',
4863
4872
  explorers: []
4864
4873
  },
4874
+ {
4875
+ name: 'AmStar Testnet',
4876
+ chain: 'AmStar',
4877
+ icon: 'amstar',
4878
+ rpc: [ 'https://testnet-rpc.amstarscan.com' ],
4879
+ faucets: [],
4880
+ nativeCurrency: { name: 'SINSO', symbol: 'SINSO', decimals: 18 },
4881
+ infoURL: 'https://sinso.io',
4882
+ shortName: 'ASARt',
4883
+ chainId: 1138,
4884
+ networkId: 1138,
4885
+ explorers: [
4886
+ {
4887
+ name: 'amstarscan-testnet',
4888
+ url: 'https://testnet.amstarscan.com',
4889
+ standard: 'EIP3091'
4890
+ }
4891
+ ]
4892
+ },
4865
4893
  {
4866
4894
  name: 'MathChain',
4867
4895
  chain: 'MATH',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.78",
3
+ "version": "0.0.79",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {