Abolfazl_771025top 10 address with most usdt inflow
    Updated 2022-10-08
    select
    TX_FROM,
    sum(amount) as volume
    from solana.core.fact_transfers a,solana.core.dim_labels b
    where a.tx_from = b.address
    and mint= 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
    group by 1
    order by 2 DESC
    limit 10
    Run a query to Download Data