eth-chainlist 0.0.204 → 0.0.205
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 +8 -0
- package/data/chain.js +17 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.205 (2023-08-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.204 ([08e432e](https://github.com/poowf/eth-chainlist/commit/08e432eab9592948606730ffb25df6d80719bd49))
|
9
|
+
* update chain data ([936549c](https://github.com/poowf/eth-chainlist/commit/936549c961bee2455721a085aaf099afff5201dd))
|
10
|
+
|
3
11
|
### 0.0.204 (2023-08-08)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -5083,7 +5083,11 @@ const chainArray = [
|
|
5083
5083
|
'https://evm-dataseed3.meerscan.io',
|
5084
5084
|
'https://evm-dataseed.meerscan.com',
|
5085
5085
|
'https://evm-dataseed1.meerscan.com',
|
5086
|
-
'https://evm-dataseed2.meerscan.com'
|
5086
|
+
'https://evm-dataseed2.meerscan.com',
|
5087
|
+
'https://qng.rpc.qitmeer.io',
|
5088
|
+
'https://mainnet.meerlabs.com',
|
5089
|
+
'https://rpc.dimai.ai',
|
5090
|
+
'https://rpc.woowow.io'
|
5087
5091
|
],
|
5088
5092
|
faucets: [],
|
5089
5093
|
nativeCurrency: { name: 'Qitmeer', symbol: 'MEER', decimals: 18 },
|
@@ -5097,7 +5101,7 @@ const chainArray = [
|
|
5097
5101
|
{
|
5098
5102
|
name: 'meerscan',
|
5099
5103
|
icon: 'meer',
|
5100
|
-
url: 'https://
|
5104
|
+
url: 'https://qng.meerscan.io',
|
5101
5105
|
standard: 'none'
|
5102
5106
|
}
|
5103
5107
|
]
|
@@ -11279,8 +11283,12 @@ const chainArray = [
|
|
11279
11283
|
{
|
11280
11284
|
name: 'Qitmeer Network Testnet',
|
11281
11285
|
chain: 'MEER',
|
11282
|
-
rpc: [
|
11283
|
-
|
11286
|
+
rpc: [
|
11287
|
+
'https://testnet-qng.rpc.qitmeer.io',
|
11288
|
+
'https://testnet.meerlabs.com',
|
11289
|
+
'https://meer.testnet.meerfans.club'
|
11290
|
+
],
|
11291
|
+
faucets: [ 'https://faucet.qitmeer.io' ],
|
11284
11292
|
nativeCurrency: { name: 'Qitmeer Testnet', symbol: 'MEER-T', decimals: 18 },
|
11285
11293
|
infoURL: 'https://github.com/Qitmeer',
|
11286
11294
|
shortName: 'meertest',
|
@@ -11291,7 +11299,7 @@ const chainArray = [
|
|
11291
11299
|
{
|
11292
11300
|
name: 'meerscan testnet',
|
11293
11301
|
icon: 'meer',
|
11294
|
-
url: 'https://testnet.
|
11302
|
+
url: 'https://qng-testnet.meerscan.io',
|
11295
11303
|
standard: 'none'
|
11296
11304
|
}
|
11297
11305
|
]
|
@@ -12081,7 +12089,8 @@ const chainArray = [
|
|
12081
12089
|
name: 'IMPERIUM TESTNET',
|
12082
12090
|
chain: 'tIMP',
|
12083
12091
|
rpc: [
|
12084
|
-
'https://data-aws-testnet.imperiumchain.com,
|
12092
|
+
'https://data-aws-testnet.imperiumchain.com',
|
12093
|
+
'https://data-aws2-testnet.imperiumchain.com'
|
12085
12094
|
],
|
12086
12095
|
faucets: [ 'https://faucet.imperiumchain.com/' ],
|
12087
12096
|
nativeCurrency: { name: 'tIMP', symbol: 'tIMP', decimals: 18 },
|
@@ -12103,7 +12112,8 @@ const chainArray = [
|
|
12103
12112
|
name: 'IMPERIUM MAINNET',
|
12104
12113
|
chain: 'IMP',
|
12105
12114
|
rpc: [
|
12106
|
-
'https://data-aws-mainnet.imperiumchain.com,
|
12115
|
+
'https://data-aws-mainnet.imperiumchain.com',
|
12116
|
+
'https://data-aws2-mainnet.imperiumchain.com'
|
12107
12117
|
],
|
12108
12118
|
faucets: [ 'https://faucet.imperiumchain.com/' ],
|
12109
12119
|
nativeCurrency: { name: 'IMP', symbol: 'IMP', decimals: 18 },
|