Generate mining basic pool ranking (sorted by block found) for a specified timeframe

This commit is contained in:
nymkappa
2022-01-06 19:59:33 +09:00
parent 4646cc6df3
commit 5ca98af7d1
16 changed files with 366 additions and 48 deletions

View File

@@ -51,3 +51,16 @@ export interface LiquidPegs {
}
export interface ITranslators { [language: string]: string; }
export interface PoolsStats {
poolsStats: {
pooldId: number,
name: string,
link: string,
blockCount: number,
emptyBlocks: number,
rank: number,
}[],
blockCount: number,
lastEstimatedHashrate: number,
}