Alexayweekly
Updated 2022-10-05
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with userbase as ( select block_timestamp, tx_signer, tx_hash
from near.core.fact_transactions
where TX_RECEIVER = 'deip-token.near')
select date_trunc('week', block_timestamp) as date, count(tx_hash) as txns, count(distinct tx_signer) as users ,
sum(users) over(order by date asc) as cum_users
from userbase
-- where TX_RECEIVER = 'deip-token.near'
-- where BLOCK_TIMESTAMP >=
GROUP by 1
order by 1 DESC
Run a query to Download Data