[mining] show pools estimated hashrate on 3d and 1w timeframes

This commit is contained in:
nymkappa
2024-10-30 10:46:44 +01:00
parent 76cfa3ca47
commit a257bcc12a
5 changed files with 33 additions and 15 deletions

View File

@@ -143,6 +143,8 @@ export interface SinglePoolStats {
rank: number;
share: number;
lastEstimatedHashrate: number;
lastEstimatedHashrate3d: number;
lastEstimatedHashrate1w: number;
emptyBlockRatio: string;
logo: string;
slug: string;
@@ -152,6 +154,8 @@ export interface SinglePoolStats {
export interface PoolsStats {
blockCount: number;
lastEstimatedHashrate: number;
lastEstimatedHashrate3d: number;
lastEstimatedHashrate1w: number;
pools: SinglePoolStats[];
}