eth-chainlist 0.0.110 → 0.0.112
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 +16 -0
- package/data/chain.js +81 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.112 (2023-03-28)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.111 ([9760df5](https://github.com/poowf/eth-chainlist/commit/9760df585f86c0c167b49d46a2ae5aa5421061ed))
|
9
|
+
* update chain data ([7ac1aa1](https://github.com/poowf/eth-chainlist/commit/7ac1aa101a283816bce62ef5483e0b7fd4d7ed5c))
|
10
|
+
|
11
|
+
### 0.0.111 (2023-03-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.110 ([ad98a1c](https://github.com/poowf/eth-chainlist/commit/ad98a1cdf44fb6ea8257e63acebac24235dd054c))
|
17
|
+
* update chain data ([7b5f23a](https://github.com/poowf/eth-chainlist/commit/7b5f23a30232ec14bb37ba93dd2e67f13843e77c))
|
18
|
+
|
3
19
|
### 0.0.110 (2023-03-25)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -6309,6 +6309,30 @@ const chainArray = [
|
|
6309
6309
|
faucets: [],
|
6310
6310
|
infoURL: ''
|
6311
6311
|
},
|
6312
|
+
{
|
6313
|
+
name: 'Dexilla Testnet',
|
6314
|
+
chain: 'Dexilla',
|
6315
|
+
rpc: [ 'https://rpc.dexilla.com' ],
|
6316
|
+
faucets: [],
|
6317
|
+
icon: 'dxz',
|
6318
|
+
nativeCurrency: { name: 'Dexilla Native Token', symbol: 'DXZ', decimals: 18 },
|
6319
|
+
infoURL: 'https://dexilla.com',
|
6320
|
+
shortName: 'Dexilla',
|
6321
|
+
chainId: 1954,
|
6322
|
+
networkId: 1954,
|
6323
|
+
explorers: [
|
6324
|
+
{
|
6325
|
+
name: 'dos-mainnet',
|
6326
|
+
url: 'https://exp.dexilla.com',
|
6327
|
+
standard: 'EIP3091'
|
6328
|
+
}
|
6329
|
+
],
|
6330
|
+
parent: {
|
6331
|
+
type: 'L2',
|
6332
|
+
chain: 'eip155-11155111',
|
6333
|
+
bridges: [ { url: 'https://bridge.dexilla.com' } ]
|
6334
|
+
}
|
6335
|
+
},
|
6312
6336
|
{
|
6313
6337
|
name: 'Eleanor',
|
6314
6338
|
title: 'Metatime Testnet Eleanor',
|
@@ -7716,10 +7740,12 @@ const chainArray = [
|
|
7716
7740
|
shortName: 'dost',
|
7717
7741
|
chainId: 3939,
|
7718
7742
|
networkId: 3939,
|
7743
|
+
icon: 'doschain',
|
7719
7744
|
explorers: [
|
7720
7745
|
{
|
7721
7746
|
name: 'DOScan-Test',
|
7722
7747
|
url: 'https://test.doscan.io',
|
7748
|
+
icon: 'doschain',
|
7723
7749
|
standard: 'EIP3091'
|
7724
7750
|
}
|
7725
7751
|
]
|
@@ -8806,8 +8832,14 @@ const chainArray = [
|
|
8806
8832
|
shortName: 'dos',
|
8807
8833
|
chainId: 7979,
|
8808
8834
|
networkId: 7979,
|
8835
|
+
icon: 'doschain',
|
8809
8836
|
explorers: [
|
8810
|
-
{
|
8837
|
+
{
|
8838
|
+
name: 'DOScan',
|
8839
|
+
url: 'https://doscan.io',
|
8840
|
+
icon: 'doschain',
|
8841
|
+
standard: 'EIP3091'
|
8842
|
+
}
|
8811
8843
|
]
|
8812
8844
|
},
|
8813
8845
|
{
|
@@ -10380,6 +10412,25 @@ const chainArray = [
|
|
10380
10412
|
}
|
10381
10413
|
]
|
10382
10414
|
},
|
10415
|
+
{
|
10416
|
+
name: 'CamelArk Mainnet',
|
10417
|
+
chainId: 20001,
|
10418
|
+
shortName: 'CamelArk',
|
10419
|
+
chain: 'ETHW',
|
10420
|
+
icon: 'camelark',
|
10421
|
+
networkId: 20001,
|
10422
|
+
nativeCurrency: { name: 'EthereumPoW', symbol: 'ETHW', decimals: 18 },
|
10423
|
+
rpc: [ 'https://mainnet-http-rpc.camelark.com' ],
|
10424
|
+
faucets: [],
|
10425
|
+
explorers: [
|
10426
|
+
{
|
10427
|
+
name: 'CamelArkscan',
|
10428
|
+
url: 'https://scan.camelark.com',
|
10429
|
+
standard: 'EIP3091'
|
10430
|
+
}
|
10431
|
+
],
|
10432
|
+
infoURL: 'https://www.camelark.com'
|
10433
|
+
},
|
10383
10434
|
{
|
10384
10435
|
name: 'Callisto Testnet',
|
10385
10436
|
chain: 'CLO',
|
@@ -14179,6 +14230,34 @@ const chainArray = [
|
|
14179
14230
|
}
|
14180
14231
|
]
|
14181
14232
|
},
|
14233
|
+
{
|
14234
|
+
name: 'Quarix Testnet',
|
14235
|
+
chain: 'Quarix',
|
14236
|
+
status: 'incubating',
|
14237
|
+
rpc: [],
|
14238
|
+
faucets: [],
|
14239
|
+
nativeCurrency: { name: 'Q', symbol: 'Q', decimals: 18 },
|
14240
|
+
infoURL: '',
|
14241
|
+
shortName: 'quarix-testnet',
|
14242
|
+
chainId: 8888881,
|
14243
|
+
networkId: 8888881,
|
14244
|
+
icon: 'quarix',
|
14245
|
+
explorers: []
|
14246
|
+
},
|
14247
|
+
{
|
14248
|
+
name: 'Quarix',
|
14249
|
+
chain: 'Quarix',
|
14250
|
+
status: 'incubating',
|
14251
|
+
rpc: [],
|
14252
|
+
faucets: [],
|
14253
|
+
nativeCurrency: { name: 'Q', symbol: 'Q', decimals: 18 },
|
14254
|
+
infoURL: '',
|
14255
|
+
shortName: 'quarix',
|
14256
|
+
chainId: 8888888,
|
14257
|
+
networkId: 8888888,
|
14258
|
+
icon: 'quarix',
|
14259
|
+
explorers: []
|
14260
|
+
},
|
14182
14261
|
{
|
14183
14262
|
name: 'Plian Testnet Subchain 1',
|
14184
14263
|
chain: 'Plian',
|
@@ -14535,6 +14614,7 @@ const chainArray = [
|
|
14535
14614
|
{
|
14536
14615
|
name: 'T.E.A.M Blockchain',
|
14537
14616
|
chain: 'TEAM',
|
14617
|
+
icon: 'team',
|
14538
14618
|
rpc: [ 'https://rpc.teamblockchain.team' ],
|
14539
14619
|
faucets: [],
|
14540
14620
|
nativeCurrency: { name: 'TEAM', symbol: '$TEAM', decimals: 18 },
|
@@ -14543,10 +14623,8 @@ const chainArray = [
|
|
14543
14623
|
shortName: 'team',
|
14544
14624
|
chainId: 88888888,
|
14545
14625
|
networkId: 88888888,
|
14546
|
-
icon: 'team',
|
14547
14626
|
explorers: [
|
14548
14627
|
{
|
14549
|
-
icon: 'team',
|
14550
14628
|
name: 'teamscan',
|
14551
14629
|
url: 'https://teamblockchain.team',
|
14552
14630
|
standard: 'EIP3091'
|