eth-chainlist 0.0.21 → 0.0.22

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.22 (2022-11-29)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.21 ([9ae89c4](https://github.com/poowf/eth-chainlist/commit/9ae89c4d2e7d3bda6eb8907779beaa6131146d2b))
9
+ * update chain data ([572ea0c](https://github.com/poowf/eth-chainlist/commit/572ea0c42160f79872303f10dfe0e7aaffbdb3c5))
10
+
3
11
  ### 0.0.21 (2022-11-28)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -10088,9 +10088,12 @@ const chainArray = [
10088
10088
  explorers: []
10089
10089
  },
10090
10090
  {
10091
- name: 'Imversed Canary',
10091
+ name: 'Imversed Mainnet',
10092
10092
  chain: 'Imversed',
10093
- rpc: [ 'https://jsonrpc-endpoint-canary.imversed.com' ],
10093
+ rpc: [
10094
+ 'https://jsonrpc.imversed.network',
10095
+ 'https://ws-jsonrpc.imversed.network'
10096
+ ],
10094
10097
  faucets: [],
10095
10098
  nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
10096
10099
  infoURL: 'https://imversed.com',
@@ -10099,6 +10102,12 @@ const chainArray = [
10099
10102
  networkId: 5555555,
10100
10103
  icon: 'imversed',
10101
10104
  explorers: [
10105
+ {
10106
+ name: 'Imversed EVM explorer (Blockscout)',
10107
+ url: 'https://txe.imversed.network',
10108
+ icon: 'imversed',
10109
+ standard: 'EIP3091'
10110
+ },
10102
10111
  {
10103
10112
  name: 'Imversed Cosmos Explorer (Big Dipper)',
10104
10113
  url: 'https://tex-c.imversed.com',
@@ -10110,7 +10119,10 @@ const chainArray = [
10110
10119
  {
10111
10120
  name: 'Imversed Testnet',
10112
10121
  chain: 'Imversed',
10113
- rpc: [ 'https://jsonrpc-endpoint-test.imversed.com' ],
10122
+ rpc: [
10123
+ 'https://jsonrpc-test.imversed.network',
10124
+ 'https://ws-jsonrpc-test.imversed.network'
10125
+ ],
10114
10126
  faucets: [],
10115
10127
  nativeCurrency: { name: 'Imversed Token', symbol: 'IMV', decimals: 18 },
10116
10128
  infoURL: 'https://imversed.com',
@@ -10121,9 +10133,9 @@ const chainArray = [
10121
10133
  explorers: [
10122
10134
  {
10123
10135
  name: 'Imversed EVM Explorer (Blockscout)',
10124
- url: 'https://txe-test.imversed.com',
10136
+ url: 'https://txe-test.imversed.network',
10125
10137
  icon: 'imversed',
10126
- standard: 'none'
10138
+ standard: 'EIP3091'
10127
10139
  },
10128
10140
  {
10129
10141
  name: 'Imversed Cosmos Explorer (Big Dipper)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {