select ADDRESS_NAME, sum(amount) as toal_amount
from solana.core.fact_transfers t,solana.core.dim_labels l
where t.TX_TO = l.address
and mint= 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and block_timestamp::date > '2022-08-01'
group by 1
order by 2 DESC
limit 5