select date_trunc('day',BLOCK_TIMESTAMP) as "DTE",sum (RUNE_AMOUNT) as Outflow
from thorchain.transfers
where to_address='thor1ty6h2ll07fqfzumphp6kq3hm4ps28xlm2l6kd6'
and ASSET= 'THOR.RUNE'
and BLOCK_TIMESTAMP >'2022-01-01'
group by "DTE"
order by "DTE"