boomer77monthly active terra wallet
Updated 2022-05-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with raw as (select tx_from[0]::string as address,
count(distinct tx_id) as txcount
from terra.transactions
where year(block_timestamp) = '2022'
group by 1),
addy as (select address
from raw
where txcount >= 50)
select date_trunc('month', block_timestamp) as dt,
count(distinct tx_from[0]::string) as active_wallet
from terra.transactions
where year(block_timestamp) = '2022' and tx_from[0]::string in (select address from addy)
group by 1
Run a query to Download Data