select sender, count(distinct tx_id) as "Transfers Count", sum(amount)/pow(10,6) as "LUNA Volume",
count(distinct receiver) as "Destination Addresses"
from terra.core.ez_transfers
where block_timestamp::date='2023-01-09' and currency='uluna'
group by 1
order by 3 DESC
limit 10