PS0G1swaps
Updated 2022-10-03Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
--cred saeedmzn
select block_timestamp::date daily,
case when daily < '2022-09-15'::date then 'before Merge'
else 'After Merge'
end as range ,
count (distinct tx_hash) num_swaps,
sum (amount_in_usd) swapped_volume_usd,
count (distinct origin_from_address) num_swappers
from ethereum.core.ez_dex_swaps
where block_timestamp::date >= '2022-09-15'::date - 30
group by 1,2
Run a query to Download Data