DB_Unique Users this week
    Updated 2023-11-30
    select
    date_trunc('week', block_timestamp) as Date,
    count(distinct tx_sender) as active_users
    from terra.core.fact_transactions

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