2022-01-18 09:37:04 +01:00
|
|
|
import { PoolInfo, PoolStats } from '../mempool.interfaces';
|
|
|
|
import BlocksRepository, { EmptyBlocks } from '../repositories/BlocksRepository';
|
|
|
|
import PoolsRepository from '../repositories/PoolsRepository';
|
|
|
|
import bitcoinClient from './bitcoin/bitcoin-client';
|
2022-01-06 11:59:33 +01:00
|
|
|
|
|
|
|
class Mining {
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate high level overview of the pool ranks and general stats
|
|
|
|
*/
|
2022-01-25 10:33:46 +01:00
|
|
|
public async $getPoolsStats(interval: string | null) : Promise<object> {
|
2022-01-18 09:37:04 +01:00
|
|
|
const poolsStatistics = {};
|
2022-01-06 11:59:33 +01:00
|
|
|
|
2022-02-09 11:41:05 +01:00
|
|
|
const poolsInfo: PoolInfo[] = await PoolsRepository.$getPoolsInfo(interval);
|
|
|
|
const emptyBlocks: EmptyBlocks[] = await BlocksRepository.$getEmptyBlocks(null, interval);
|
2022-01-06 11:59:33 +01:00
|
|
|
|
2022-01-18 09:37:04 +01:00
|
|
|
const poolsStats: PoolStats[] = [];
|
2022-01-06 11:59:33 +01:00
|
|
|
let rank = 1;
|
|
|
|
|
|
|
|
poolsInfo.forEach((poolInfo: PoolInfo) => {
|
2022-01-18 09:37:04 +01:00
|
|
|
const poolStat: PoolStats = {
|
2022-01-06 11:59:33 +01:00
|
|
|
poolId: poolInfo.poolId, // mysql row id
|
|
|
|
name: poolInfo.name,
|
|
|
|
link: poolInfo.link,
|
|
|
|
blockCount: poolInfo.blockCount,
|
|
|
|
rank: rank++,
|
|
|
|
emptyBlocks: 0,
|
|
|
|
}
|
|
|
|
for (let i = 0; i < emptyBlocks.length; ++i) {
|
|
|
|
if (emptyBlocks[i].poolId === poolInfo.poolId) {
|
|
|
|
poolStat.emptyBlocks++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
poolsStats.push(poolStat);
|
2022-01-18 09:37:04 +01:00
|
|
|
});
|
2022-01-06 11:59:33 +01:00
|
|
|
|
2022-01-25 10:33:46 +01:00
|
|
|
poolsStatistics['pools'] = poolsStats;
|
|
|
|
|
|
|
|
const oldestBlock = new Date(await BlocksRepository.$oldestBlockTimestamp());
|
|
|
|
poolsStatistics['oldestIndexedBlockTimestamp'] = oldestBlock.getTime();
|
|
|
|
|
2022-02-09 11:41:05 +01:00
|
|
|
const blockCount: number = await BlocksRepository.$blockCount(null, interval);
|
2022-01-18 09:37:04 +01:00
|
|
|
poolsStatistics['blockCount'] = blockCount;
|
2022-01-25 10:33:46 +01:00
|
|
|
|
|
|
|
const blockHeightTip = await bitcoinClient.getBlockCount();
|
|
|
|
const lastBlockHashrate = await bitcoinClient.getNetworkHashPs(120, blockHeightTip);
|
2022-01-18 09:37:04 +01:00
|
|
|
poolsStatistics['lastEstimatedHashrate'] = lastBlockHashrate;
|
2022-01-06 11:59:33 +01:00
|
|
|
|
|
|
|
return poolsStatistics;
|
|
|
|
}
|
2022-02-08 10:28:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all mining pool stats for a pool
|
|
|
|
*/
|
|
|
|
public async $getPoolStat(interval: string | null, poolId: number): Promise<object> {
|
|
|
|
const pool = await PoolsRepository.$getPool(poolId);
|
|
|
|
if (!pool) {
|
2022-02-09 11:41:05 +01:00
|
|
|
throw new Error(`This mining pool does not exist`);
|
2022-02-08 10:28:53 +01:00
|
|
|
}
|
|
|
|
|
2022-02-09 11:41:05 +01:00
|
|
|
const blockCount: number = await BlocksRepository.$blockCount(poolId, interval);
|
|
|
|
const emptyBlocks: EmptyBlocks[] = await BlocksRepository.$getEmptyBlocks(poolId, interval);
|
2022-02-08 10:28:53 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
pool: pool,
|
2022-02-09 11:41:05 +01:00
|
|
|
blockCount: blockCount,
|
|
|
|
emptyBlocks: emptyBlocks,
|
2022-02-08 10:28:53 +01:00
|
|
|
};
|
|
|
|
}
|
2022-01-06 11:59:33 +01:00
|
|
|
}
|
|
|
|
|
2022-01-25 10:33:46 +01:00
|
|
|
export default new Mining();
|