-
Notifications
You must be signed in to change notification settings - Fork 8
add: ephemeral dust chart #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
part of #101
|
cc @tankyleo |
|
I also re-ran the following query to see when a pool first mined ephemeral dust: SELECT
t.pool_id,
MIN(CASE WHEN t.tx_spending_ephemeral_dust > 0 THEN t.height END) AS first_ephemeral_dust_height,
MIN(CASE WHEN t.tx_spending_ephemeral_dust > 0 THEN t.date END) AS first_ephemeral_dust_date
FROM (
SELECT
bs.date,
bs.height,
ts.tx_spending_ephemeral_dust,
bs.pool_id
FROM tx_stats ts
JOIN block_stats bs ON ts.height = bs.height
WHERE ts.tx_spending_ephemeral_dust > 0
) t
GROUP BY t.pool_id
ORDER BY first_ephemeral_dust_date;Which yields:
Innopolis Tech at height 927765 on 2025-12-13 seems to be the new. |
|
While we haven't done this yet, I think it could be possible to have the above SQL query as a mainnet-observer export and instead of showing a chart, show a table? |
Similar to pool,total,height,date MARA Pool,31,894455,2025-04-29 AntPool,60,900676,2025-06-10 F2Pool,50,901146,2025-06-14 SpiderPool,69,913602,2025-09-07 Ocean.xyz,9,925458,2025-11-27 Innopolis Tech,1,927765,2025-12-13
|
Thank you @0xB10C I particularly like the table with the mining pool attributions ! |
|
Should do the same for P2A? What do you think? |
Sounds good to me ! |

part of #101