mirektheprinterQ95 - Solana number of transactions
    Updated 2022-07-10
    select
    date_trunc('day',block_timestamp) as date,
    count(tx_id)
    from solana.core.fact_transactions
    group by date order by date desc

    Run a query to Download Data