Abolfazl_771025overal miners activity
Updated 2022-09-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
with main as (select
DISTINCT miner
from ethereum.core.fact_blocks
where network='mainnet'
)
select
'before Merge' as period,
count(DISTINCT origin_from_address) as "count of miners",
count(DISTINCT tx_hash) as "count of transaction",
sum(amount) as "volume (ETH)"
from ethereum.core.ez_eth_transfers a join ethereum.core.dim_labels b on a.ORIGIN_TO_ADDRESS = b.address
where block_timestamp::date between '2022-09-01' and '2022-09-15 06:46:00.000'
and origin_from_address in (SELECT miner from main)
group by 1
union
select
'after Merge' as period,
count(DISTINCT origin_from_address) as "count of miners",
count(DISTINCT tx_hash) as "count of transaction",
sum(amount) as "volume (ETH)"
from ethereum.core.ez_eth_transfers a join ethereum.core.dim_labels b on a.ORIGIN_TO_ADDRESS = b.address
where block_timestamp::date > '2022-09-15 06:46:00.000'
and origin_from_address in (SELECT miner from main)
group by 1
Run a query to Download Data