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