Ali3NDaily ETH Swapping By Miners and Non Miners
Updated 2022-09-28Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select 'Miners' as type,
block_timestamp::date as date,
count (distinct tx_hash) as tx_count,
count (distinct origin_from_address) as Users_Count,
sum (amount_in) as Volume
from ethereum.core.ez_dex_swaps
where symbol_in in ('WETH','ETH','aETH','aWETH','cETH','cbETH','fETH','iETH','ibETH','icETH','pETH','rETH','sETH','stETH','stkETH','vETH','wstETH')
and origin_from_address in (select miner from ethereum.core.fact_blocks)
and block_timestamp >= '2022-07-15'
group by 1,2
union ALL
select 'Non-Miners' as type,
block_timestamp::date as date,
count (distinct tx_hash) as tx_count,
count (distinct origin_from_address) as Users_Count,
sum (amount_in) as Volume
from ethereum.core.ez_dex_swaps
where symbol_in in ('WETH','ETH','aETH','aWETH','cETH','cbETH','fETH','iETH','ibETH','icETH','pETH','rETH','sETH','stETH','stkETH','vETH','wstETH')
and origin_from_address not in (select miner from ethereum.core.fact_blocks)
and block_timestamp >= '2022-07-15'
group by 1,2
Run a query to Download Data