Pmisha-bmlMdxactive.1
Updated 2022-05-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
--active
with t1 as(select
block_timestamp,
msg_value:sender as active_users,
count(tx_id) as transactions
from terra.msgs
where msg_value:sender is not null
group by 1,2
having transactions>3)
select
date_trunc('day', block_timestamp) as dt,
count(distinct active_users) as daily_wallets
from t1
group by 1
Run a query to Download Data