nimasadjadiUntitled Query
    select
    distinct tx_from,
    date_trunc(DAY,BLOCK_TIMESTAMP)::date as day,
    sum(amount) as inflow_amount
    from solana.core.fact_transfers
    where mint='EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    group by 1
    order by 3 DESC
    limit 5
    Run a query to Download Data