afonsoUntitled Query
Updated 2023-01-19
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
block_timestamp::date as day,
count(distinct tx_hash) as swaps_count,
count(distinct origin_from_address) as swappers_count,
sum(swaps_count) over(order by day) as cumulative_swaps_count,
sum(swappers_count) over(order by day) as cumulative_swappers_count
from bsc.core.fact_event_logs
where event_name ilike '%swap%'
and block_timestamp >= '2022-06-01'
group by day
order by day
Run a query to Download Data