jackguyNew Year, New LUNA
    Updated 2023-01-09
    select
    date_trunc('day', block_timestamp) as day,
    count(distinct tx_sender) as active_user,
    count(DISTINCT TX_ID) as transaction

    from terra.core.fact_transactions
    group by 1
    order by 1
    Run a query to Download Data