Blazesolana weekly trans
    -- forked from solana trans @ https://flipsidecrypto.xyz/edit/queries/0909c89c-052e-4ec2-9eeb-132412fe2ba2

    select
    date_trunc('week',block_timestamp) as week,
    count(distinct tx_id) as sol_transactions
    from
    solana.core.fact_transactions
    where
    date_trunc('week',block_timestamp) >date_trunc('week',CURRENT_TIMESTAMP) - interval '12 months'
    and succeeded =true
    group by 1





    Run a query to Download Data