Sleepyactions
Updated 2023-06-04
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
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select
block_timestamp::date day,
'Swap' type,
count(distinct tx_id) total_tx
from flow.core.ez_swaps
where block_timestamp::date between current_date - 180 and current_date - 1
group by day, type
union all
select
block_timestamp::date day,
'NFT trading' type,
count(distinct tx_id) total_tx
from flow.core.ez_nft_sales
where block_timestamp::date between current_date - 180 and current_date - 1
group by day, type
union all
select
block_timestamp::date day,
'Staking' type,
count(distinct tx_id) total_tx
from flow.core.ez_staking_actions
where block_timestamp::date between current_date - 180 and current_date - 1
--and action not ilike '%withdraw%'
group by day, type
union all
select
block_timestamp::date day,
'Bridging' type,
count(distinct tx_id) total_tx
Run a query to Download Data