DB_Daily Active Users
    Updated 2023-11-30
    select
    date_trunc('day', block_timestamp) as Date,
    count(distinct tx_sender) as active_users,
    sum(active_users) over (order by date) as cum_daily_users
    from terra.core.fact_transactions

    where date >= current_date - 30

    group by 1
    order by 1
    Run a query to Download Data