Updated 2022-11-18
    select
    date_trunc('day',block_timestamp),
    count(*),
    count(distinct tx_from)
    from axelar.core.fact_transactions
    GROUP BY 1
    Run a query to Download Data