NavidUntitled Query
Updated 2022-11-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with miners as
(
select
b.miner,
round(count(distinct b.HASH)/10)+1 as blocks_count
from
ethereum.core.fact_blocks b join ethereum.core.fact_transactions t on b.hash=t.BLOCK_HASH
where
b.BLOCK_TIMESTAMP>CURRENT_DATE-60
group by
miner
)
select
blocks_count*10 as cnt,
count(*) as frequency
from
miners
group by
blocks_count
order by
blocks_count
Run a query to Download Data