MrftiTop 100 USDC senders
    Updated 2022-10-07
    select
    sum(amount) as sent_volume,
    tx_to as address
    from
    solana.core.fact_transfers
    where date_trunc(day, block_timestamp) >= '2022-08-26'
    and mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    group by address
    order by sent_volume desc
    limit 100
    Run a query to Download Data