nitsNew Joiners Algorand
Updated 2022-07-02
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT date(first_use) as day, count(DISTINCT sender) as total_addrs,
case when day>='2022-01-01' then 'after' else 'before' end as type,
sum(total_addrs) over (partition by type order by day) as cumulative_addr
from
( SELECT sender, min(block_timestamp) as first_use
FROM ALGORAND.APPLICATION_CALL_TRANSACTION
GROUP by 1)
where day >= '2021-07-01'
GROUP by 1
-- LIMIT 10
Run a query to Download Data