Add visualization to mined blocks

This commit is contained in:
Mononaut
2022-06-14 16:39:37 +00:00
parent d6334d8959
commit 1d4488eb96
8 changed files with 366 additions and 140 deletions

View File

@@ -128,6 +128,13 @@ export interface BlockExtended extends Block {
extras?: BlockExtension;
}
export interface TransactionStripped {
txid: string;
fee: number;
vsize: number;
value: number;
}
export interface RewardStats {
startBlock: number;
endBlock: number;