select tx:body:messages[0]:from_address as sender, sum(tx:body:messages[0]:amount[0]:amount)/pow(10,6) as LUNA_Volume
from terra.core.fact_transactions
where tx:body:messages[0]:amount[0]:denom='uluna'
and TX_SUCCEEDED='TRUE'
group by 1
order by 2 desc
limit 10