NavidNBA Playoff Usage
    Updated 2022-06-26
    select
    date(BLOCK_TIMESTAMP) as Transaction_Date,
    count(distinct TX_ID) as Transactions_Count
    from
    flow.core.fact_transactions
    group by
    date(BLOCK_TIMESTAMP)
    order by
    date(BLOCK_TIMESTAMP)

    Run a query to Download Data