flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
top 10 miner - number of transactions
Hadiseh
top 10 miner - number of transactions
Updated 2022-09-10
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
with
t1
as
(
select
miner
,
sum
(
tx_count
)
as
transaction_count
from
ethereum
.
core
.
fact_blocks
where
block_timestamp
>=
'2022-06-11'
group
by
1
)
select
miner
,
transaction_count
from
t1
order
by
transaction_count
desc
limit
10
Results
Run a query to Download Data