MLDZMNMAU
Updated 2024-04-10
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date_trunc('Month',block_timestamp) as Month,
count(distinct TX_FROM) as MAU
from osmosis.core.fact_transactions
where block_timestamp >= '2023-01-01'
and block_timestamp < '2024-03-16'
and TX_SUCCEEDED = 'TRUE'
group by 1
order by 1 desc
QueryRunArchived: QueryRun has been archived