maybeyonassolana_phantom
    Updated 2022-02-09
    select
    case when month(block_timestamp) = 1 then 'JAN' else 'FEB' end as month,
    count(distinct tx_id) as txs,
    count(distinct tx_from_address) as users
    from solana.transactions
    where year(block_timestamp) = 2022
    group by 1
    limit 100
    Run a query to Download Data