Replacing footer and latest blocks with a stats dashboard.

This commit is contained in:
softsimon
2020-09-21 19:41:12 +07:00
parent 64705a9e9c
commit d915edd3de
18 changed files with 235 additions and 209 deletions

View File

@@ -8,6 +8,7 @@ export interface WebsocketResponse {
historicalDate?: string;
mempoolInfo?: MempoolInfo;
vBytesPerSecond?: number;
lastDifficultyAdjustment?: number;
action?: string;
data?: string[];
tx?: Transaction;
@@ -31,8 +32,4 @@ export interface MempoolBlock {
export interface MempoolInfo {
size: number;
bytes: number;
usage?: number;
maxmempool?: number;
mempoolminfee?: number;
minrelaytxfee?: number;
}