eth-chainlist 0.0.120 → 0.0.122
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 +33 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.122 (2023-04-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.121 ([afc34bd](https://github.com/poowf/eth-chainlist/commit/afc34bd865cb0fec901514efff0bdf45aedc3d76))
|
9
|
+
* update chain data ([d8305bf](https://github.com/poowf/eth-chainlist/commit/d8305bf2eec69635a1b07d54a966f2122441662b))
|
10
|
+
|
11
|
+
### 0.0.121 (2023-04-07)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.120 ([03ac950](https://github.com/poowf/eth-chainlist/commit/03ac95022d4948840a41922538f858ef0aa49918))
|
17
|
+
* update chain data ([3d8bfab](https://github.com/poowf/eth-chainlist/commit/3d8bfab8b8c06306ef2ffdf097dce2fd645d97e2))
|
18
|
+
|
3
19
|
### 0.0.120 (2023-04-06)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8993,6 +8993,25 @@ const chainArray = [
|
|
8993
8993
|
}
|
8994
8994
|
]
|
8995
8995
|
},
|
8996
|
+
{
|
8997
|
+
name: 'ADIL Mainnet',
|
8998
|
+
chain: 'ADIL',
|
8999
|
+
icon: 'adil',
|
9000
|
+
rpc: [ 'https://s2.adilchain-rpc.io' ],
|
9001
|
+
faucets: [],
|
9002
|
+
nativeCurrency: { name: 'ADIL', symbol: 'ADIL', decimals: 18 },
|
9003
|
+
infoURL: 'https://adilchain.io',
|
9004
|
+
shortName: 'adil',
|
9005
|
+
chainId: 7576,
|
9006
|
+
networkId: 7576,
|
9007
|
+
explorers: [
|
9008
|
+
{
|
9009
|
+
name: 'ADIL Mainnet Explorer',
|
9010
|
+
url: 'https://s2.adilchain-scan.io',
|
9011
|
+
standard: 'EIP3091'
|
9012
|
+
}
|
9013
|
+
]
|
9014
|
+
},
|
8996
9015
|
{
|
8997
9016
|
name: 'The Root Network - Mainnet',
|
8998
9017
|
chain: 'TRN',
|
@@ -9307,7 +9326,7 @@ const chainArray = [
|
|
9307
9326
|
]
|
9308
9327
|
},
|
9309
9328
|
{
|
9310
|
-
name: 'Qitmeer Network
|
9329
|
+
name: 'Qitmeer Network Mixnet',
|
9311
9330
|
chain: 'MEER',
|
9312
9331
|
rpc: [],
|
9313
9332
|
faucets: [],
|
@@ -12522,7 +12541,7 @@ const chainArray = [
|
|
12522
12541
|
chain: 'MEER',
|
12523
12542
|
rpc: [],
|
12524
12543
|
faucets: [],
|
12525
|
-
nativeCurrency: { name: 'Amana Testnet', symbol: 'MEER-
|
12544
|
+
nativeCurrency: { name: 'Amana Testnet', symbol: 'MEER-T', decimals: 18 },
|
12526
12545
|
infoURL: 'https://github.com/Qitmeer',
|
12527
12546
|
shortName: 'amanatest',
|
12528
12547
|
icon: 'meer',
|
@@ -12535,7 +12554,7 @@ const chainArray = [
|
|
12535
12554
|
chain: 'MEER',
|
12536
12555
|
rpc: [],
|
12537
12556
|
faucets: [],
|
12538
|
-
nativeCurrency: { name: 'Amana Mixnet', symbol: 'MEER-
|
12557
|
+
nativeCurrency: { name: 'Amana Mixnet', symbol: 'MEER-M', decimals: 18 },
|
12539
12558
|
infoURL: 'https://github.com/Qitmeer',
|
12540
12559
|
shortName: 'amanamix',
|
12541
12560
|
icon: 'meer',
|
@@ -12548,7 +12567,7 @@ const chainArray = [
|
|
12548
12567
|
chain: 'MEER',
|
12549
12568
|
rpc: [],
|
12550
12569
|
faucets: [],
|
12551
|
-
nativeCurrency: { name: 'Amana Privnet', symbol: 'MEER-
|
12570
|
+
nativeCurrency: { name: 'Amana Privnet', symbol: 'MEER-P', decimals: 18 },
|
12552
12571
|
infoURL: 'https://github.com/Qitmeer',
|
12553
12572
|
shortName: 'amanapriv',
|
12554
12573
|
icon: 'meer',
|
@@ -12561,7 +12580,7 @@ const chainArray = [
|
|
12561
12580
|
chain: 'MEER',
|
12562
12581
|
rpc: [],
|
12563
12582
|
faucets: [],
|
12564
|
-
nativeCurrency: { name: 'Flana Testnet', symbol: 'MEER-
|
12583
|
+
nativeCurrency: { name: 'Flana Testnet', symbol: 'MEER-T', decimals: 18 },
|
12565
12584
|
infoURL: 'https://github.com/Qitmeer',
|
12566
12585
|
shortName: 'flanatest',
|
12567
12586
|
icon: 'meer',
|
@@ -12574,7 +12593,7 @@ const chainArray = [
|
|
12574
12593
|
chain: 'MEER',
|
12575
12594
|
rpc: [],
|
12576
12595
|
faucets: [],
|
12577
|
-
nativeCurrency: { name: 'Flana Mixnet', symbol: 'MEER-
|
12596
|
+
nativeCurrency: { name: 'Flana Mixnet', symbol: 'MEER-M', decimals: 18 },
|
12578
12597
|
infoURL: 'https://github.com/Qitmeer',
|
12579
12598
|
shortName: 'flanamix',
|
12580
12599
|
icon: 'meer',
|
@@ -12587,7 +12606,7 @@ const chainArray = [
|
|
12587
12606
|
chain: 'MEER',
|
12588
12607
|
rpc: [],
|
12589
12608
|
faucets: [],
|
12590
|
-
nativeCurrency: { name: 'Flana Privnet', symbol: 'MEER-
|
12609
|
+
nativeCurrency: { name: 'Flana Privnet', symbol: 'MEER-P', decimals: 18 },
|
12591
12610
|
infoURL: 'https://github.com/Qitmeer',
|
12592
12611
|
shortName: 'flanapriv',
|
12593
12612
|
icon: 'meer',
|
@@ -12600,7 +12619,7 @@ const chainArray = [
|
|
12600
12619
|
chain: 'MEER',
|
12601
12620
|
rpc: [],
|
12602
12621
|
faucets: [],
|
12603
|
-
nativeCurrency: { name: 'Mizana Testnet', symbol: 'MEER-
|
12622
|
+
nativeCurrency: { name: 'Mizana Testnet', symbol: 'MEER-T', decimals: 18 },
|
12604
12623
|
infoURL: 'https://github.com/Qitmeer',
|
12605
12624
|
shortName: 'mizanatest',
|
12606
12625
|
icon: 'meer',
|
@@ -12613,7 +12632,7 @@ const chainArray = [
|
|
12613
12632
|
chain: 'MEER',
|
12614
12633
|
rpc: [],
|
12615
12634
|
faucets: [],
|
12616
|
-
nativeCurrency: { name: 'Mizana Mixnet', symbol: 'MEER-
|
12635
|
+
nativeCurrency: { name: 'Mizana Mixnet', symbol: 'MEER-M', decimals: 18 },
|
12617
12636
|
infoURL: 'https://github.com/Qitmeer',
|
12618
12637
|
shortName: 'mizanamix',
|
12619
12638
|
icon: 'meer',
|
@@ -12626,7 +12645,7 @@ const chainArray = [
|
|
12626
12645
|
chain: 'MEER',
|
12627
12646
|
rpc: [],
|
12628
12647
|
faucets: [],
|
12629
|
-
nativeCurrency: { name: 'Mizana Privnet', symbol: 'MEER-
|
12648
|
+
nativeCurrency: { name: 'Mizana Privnet', symbol: 'MEER-P', decimals: 18 },
|
12630
12649
|
infoURL: 'https://github.com/Qitmeer',
|
12631
12650
|
shortName: 'mizanapriv',
|
12632
12651
|
icon: 'meer',
|
@@ -15193,10 +15212,12 @@ const chainArray = [
|
|
15193
15212
|
shortName: 'GTH',
|
15194
15213
|
chainId: 192837465,
|
15195
15214
|
networkId: 192837465,
|
15215
|
+
icon: 'gather',
|
15196
15216
|
explorers: [
|
15197
15217
|
{
|
15198
15218
|
name: 'Blockscout',
|
15199
15219
|
url: 'https://explorer.gather.network',
|
15220
|
+
icon: 'gather',
|
15200
15221
|
standard: 'none'
|
15201
15222
|
}
|
15202
15223
|
]
|
@@ -15324,10 +15345,12 @@ const chainArray = [
|
|
15324
15345
|
shortName: 'tGTH',
|
15325
15346
|
chainId: 356256156,
|
15326
15347
|
networkId: 356256156,
|
15348
|
+
icon: 'gather',
|
15327
15349
|
explorers: [
|
15328
15350
|
{
|
15329
15351
|
name: 'Blockscout',
|
15330
15352
|
url: 'https://testnet-explorer.gather.network',
|
15353
|
+
icon: 'gather',
|
15331
15354
|
standard: 'none'
|
15332
15355
|
}
|
15333
15356
|
]
|