RayyykPhantom Wallet Growth
    Updated 2022-02-10
    select date_trunc('day', block_timestamp) as day,
    sum(1) as transactions
    from solana.transactions
    where block_timestamp >= '2022-01-01'
    and succeeded = 'TRUE'
    group by 1
    order by 1
    Run a query to Download Data