Commit for add excess in explorer
This commit is contained in:
parent
1dc2933fb9
commit
ed4f7c71e7
@ -817,7 +817,7 @@ export class BlockchainBlockController {
|
|||||||
const BlockchainBlockKernalFetchQuery = await getConnection(Global.network).getRepository(
|
const BlockchainBlockKernalFetchQuery = await getConnection(Global.network).getRepository(
|
||||||
BlockchainKernel,
|
BlockchainKernel,
|
||||||
).find({
|
).find({
|
||||||
select: ['Features', 'Fee', 'LockHeight'],
|
select: ['Features', 'Fee', 'LockHeight' , 'Excess'],
|
||||||
where: { BlockId: BlockchainBlockFetchQuery.Hash },
|
where: { BlockId: BlockchainBlockFetchQuery.Hash },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
"TIMETAKEN": "Verbrachte Zeit (sek)",
|
"TIMETAKEN": "Verbrachte Zeit (sek)",
|
||||||
"COUNTDOWN": "Mainnet-Countdown",
|
"COUNTDOWN": "Mainnet-Countdown",
|
||||||
"EXPLORE_IT": "MEHR",
|
"EXPLORE_IT": "MEHR",
|
||||||
|
"EXCESS":"Überschuss",
|
||||||
"blocks-by-algorithm" : "Blöcke nach Algorithmus",
|
"blocks-by-algorithm" : "Blöcke nach Algorithmus",
|
||||||
"VIEWALL": "Alle Diagramme anzeigen",
|
"VIEWALL": "Alle Diagramme anzeigen",
|
||||||
"BLOCKCHAIN_HEIGHT": "Blockchain Höhe",
|
"BLOCKCHAIN_HEIGHT": "Blockchain Höhe",
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
"HEADER_TEXT": "You are on Beta",
|
"HEADER_TEXT": "You are on Beta",
|
||||||
"COUNTDOWN": "Mainnet Countdown",
|
"COUNTDOWN": "Mainnet Countdown",
|
||||||
"TIMETAKEN": "Time Taken (sec)",
|
"TIMETAKEN": "Time Taken (sec)",
|
||||||
|
"EXCESS":"Excess",
|
||||||
"EXPLORE_IT": "Explore",
|
"EXPLORE_IT": "Explore",
|
||||||
"blocks-by-algorithm" : "Blocks by Algorithm",
|
"blocks-by-algorithm" : "Blocks by Algorithm",
|
||||||
"VIEWALL": "View All Charts",
|
"VIEWALL": "View All Charts",
|
||||||
|
@ -232,10 +232,13 @@
|
|||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="view_moble_tble web_hdng">
|
<div class="view_moble_tble web_hdng">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-4">
|
<div class="col-lg-2">
|
||||||
<div class="block_div"><h5 class="mb-0">{{'home.FEATURES' | translate}}</h5></div>
|
<div class="block_div"><h5 class="mb-0">{{'home.FEATURES' | translate}}</h5></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-4 ">
|
<div class="col-lg-4">
|
||||||
|
<div class="block_div"><h5 class="mb-0">{{'home.EXCESS' | translate}}</h5></div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-2 ">
|
||||||
<div class="block_div"><h5 class="mb-0">{{'home.BLOCK' | translate}} {{'home.HEIGHT' | translate}}</h5></div>
|
<div class="block_div"><h5 class="mb-0">{{'home.BLOCK' | translate}} {{'home.HEIGHT' | translate}}</h5></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-4 ">
|
<div class="col-lg-4 ">
|
||||||
@ -244,17 +247,21 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="view_moble_tble" *ngFor="let hashkernel of hashdata.BlockchainBlockKernalFetchQuery">
|
<div class="view_moble_tble" *ngFor="let hashkernel of hashdata.BlockchainBlockKernalFetchQuery">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-sm-4 col-md-4 col-lg-4">
|
<div class="col-12 col-sm-2 col-md-2 col-lg-2">
|
||||||
<div class="block_div"><h6>{{'home.FEATURES' | translate}}</h6><span class="blck_value">{{ hashkernel.Features }}</span></div>
|
<div class="block_div"><h6>{{'home.FEATURES' | translate}}</h6><span class="blck_value">{{ hashkernel .Features }}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-12 col-sm-4 col-md-4 col-lg-4">
|
<div class="col-12 col-sm-4 col-md-4 col-lg-4">
|
||||||
<div class="block_div"><h6>{{'home.BLOCK' | translate}} {{'home.HEIGHT' | translate}}</h6><span class="blck_value">{{ hashkernel.LockHeight }}</span></div>
|
<div class="block_div"><h6>{{'home.EXCESS' | translate}} </h6><span class="blck_value">{{ hashkernel | json }}</span></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-12 col-sm-2 col-md-2 col-lg-2">
|
||||||
|
<div class="block_div"><h6>{{'home.BLOCK' | translate}} {{'home.HEIGHT' | translate}}</h6><span class="blck_value">{{ hashkernel .LockHeight }}</span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-sm-4 col-md-4 col-lg-4">
|
<div class="col-12 col-sm-4 col-md-4 col-lg-4">
|
||||||
<div class="block_div"><h6>{{'home.FEE' | translate}}</h6><span class="blck_value">{{ hashkernel.Fee }} Epic</span></div>
|
<div class="block_div"><h6>{{'home.FEE' | translate}}</h6><span class="blck_value">{{ hashkernel .Fee }} Epic</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@ -268,12 +275,12 @@
|
|||||||
<td>Fee</td>
|
<td>Fee</td>
|
||||||
<td>Lock Height</td>
|
<td>Lock Height</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr *ngFor="let hashkernel of hashdata.BlockchainBlockKernalFetchQuery">
|
<tr *ngFor="let hashkernel of hashdata.BlockchainBlockKernalFetchQuery">
|
||||||
<td>{{ hashkernel.Features }}</td>
|
<td>{{ hashkernel .Features }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ hashkernel.Fee }}
|
{{ hashkernel .Fee }}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ hashkernel.LockHeight }}</td>
|
<td>{{ hashkernel .LockHeight }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user