Add average fee delta to pool ranking

Co-authored-by: mononaut <83316221+mononaut@users.noreply.github.com>
This commit is contained in:
Joost Jager
2023-07-03 16:00:32 +02:00
parent 3d33233e51
commit 9e5d10b15f
6 changed files with 28 additions and 4 deletions

View File

@@ -39,7 +39,8 @@ class PoolsRepository {
pools.name AS name,
pools.link AS link,
slug,
AVG(blocks_audits.match_rate) AS avgMatchRate
AVG(blocks_audits.match_rate) AS avgMatchRate,
AVG((CAST(blocks.fees as SIGNED) - CAST(blocks_audits.expected_fees as SIGNED)) / NULLIF(CAST(blocks_audits.expected_fees as SIGNED), 0)) AS avgFeeDelta
FROM blocks
JOIN pools on pools.id = pool_id
LEFT JOIN blocks_audits ON blocks_audits.height = blocks.height