eth-chainlist 0.0.90 → 0.0.92

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.92 (2023-03-04)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.91 ([a62d99c](https://github.com/poowf/eth-chainlist/commit/a62d99c838aa6b1aaee25f82aa099b8543c2afa3))
9
+ * update chain data ([d17ff62](https://github.com/poowf/eth-chainlist/commit/d17ff62908a4a7ff71572e485f7e9983cee9f1d5))
10
+
11
+ ### 0.0.91 (2023-03-03)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.90 ([687af50](https://github.com/poowf/eth-chainlist/commit/687af507328dd610c498c7c70c29c0773efeb7f5))
17
+ * update chain data ([d0e0739](https://github.com/poowf/eth-chainlist/commit/d0e0739bea871e2903c77e7af1ab6df79edfdca6))
18
+
3
19
  ### 0.0.90 (2023-03-02)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3078,6 +3078,21 @@ const chainArray = [
3078
3078
  url: 'https://filfox.info/en',
3079
3079
  standard: 'none'
3080
3080
  },
3081
+ {
3082
+ name: 'Beryx',
3083
+ url: 'https://beryx.zondax.ch',
3084
+ standard: 'none'
3085
+ },
3086
+ {
3087
+ name: 'Glif Explorer',
3088
+ url: 'https://explorer.glif.io',
3089
+ standard: 'EIP3091'
3090
+ },
3091
+ {
3092
+ name: 'Filmine',
3093
+ url: 'https://explorer.filmine.io',
3094
+ standard: 'none'
3095
+ },
3081
3096
  { name: 'Filscan', url: 'https://filscan.io', standard: 'none' },
3082
3097
  {
3083
3098
  name: 'Filscout',
@@ -5002,7 +5017,7 @@ const chainArray = [
5002
5017
  name: 'Dogcoin Mainnet',
5003
5018
  chain: 'DOGS',
5004
5019
  icon: 'dogs',
5005
- rpc: [ 'https://mainnet-rpc.dogcoin.network' ],
5020
+ rpc: [ 'https://mainnet-rpc.dogcoin.me' ],
5006
5021
  faucets: [ 'https://faucet.dogcoin.network' ],
5007
5022
  nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
5008
5023
  infoURL: 'https://dogcoin.network',
@@ -6094,6 +6109,28 @@ const chainArray = [
6094
6109
  faucets: [],
6095
6110
  infoURL: ''
6096
6111
  },
6112
+ {
6113
+ name: 'Eleanor',
6114
+ title: 'Metatime Testnet Eleanor',
6115
+ chain: 'MTC',
6116
+ rpc: [
6117
+ 'https://rpc.metatime.com/eleanor',
6118
+ 'wss://ws.metatime.com/eleanor'
6119
+ ],
6120
+ faucets: [ 'https://faucet.metatime.com/eleanor' ],
6121
+ nativeCurrency: { name: 'Eleanor Metacoin', symbol: 'MTC', decimals: 18 },
6122
+ infoURL: 'https://eleanor.metatime.com',
6123
+ shortName: 'mtc',
6124
+ chainId: 1967,
6125
+ networkId: 1967,
6126
+ explorers: [
6127
+ {
6128
+ name: 'metaexplorer-eleanor',
6129
+ url: 'https://explorer.metatime.com/eleanor',
6130
+ standard: 'EIP3091'
6131
+ }
6132
+ ]
6133
+ },
6097
6134
  {
6098
6135
  name: 'Atelier',
6099
6136
  title: 'Atelier Test Network',
@@ -7121,6 +7158,7 @@ const chainArray = [
7121
7158
  icon: 'filecoin',
7122
7159
  rpc: [
7123
7160
  'https://api.hyperspace.node.glif.io/rpc/v1',
7161
+ 'https://rpc.ankr.com/filecoin_testnet',
7124
7162
  'https://filecoin-hyperspace.chainstacklabs.com/rpc/v1'
7125
7163
  ],
7126
7164
  faucets: [ 'https://hyperspace.yoga/#faucet' ],
@@ -9024,7 +9062,7 @@ const chainArray = [
9024
9062
  name: 'Dogcoin Testnet',
9025
9063
  chain: 'DOGS',
9026
9064
  icon: 'dogs',
9027
- rpc: [ 'https://testnet-rpc.dogcoin.network' ],
9065
+ rpc: [ 'https://testnet-rpc.dogcoin.me' ],
9028
9066
  faucets: [ 'https://faucet.dogcoin.network' ],
9029
9067
  nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
9030
9068
  infoURL: 'https://dogcoin.network',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {