developer_viola2023-11-02 05:45 PM
    Updated 2023-11-02
    select date_trunc('day', block_timestamp) as block_date, count(DISTINCT TX_HASH) as Base
    from base.core.fact_transactions
    where block_date > '2022-01-01'
    group by 1
    order by block_date
    Run a query to Download Data