cypherETH miners
Updated 2022-09-09Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with bins as (
select
floor(tx_count/1)*1 as bin_floor,
count(tx_count) as count
from ethereum.core.fact_blocks
group by 1
order by 1
-- same query as above, just in a CTE
)
select
bin_floor,
bin_floor || ' - ' || (bin_floor + 1) as bin_range,
count,
row_number() over (order by bin_floor asc) as rank
from bins
order by 1;
Run a query to Download Data