select date_trunc('day', block_timestamp) as "Date", count(distinct tx_hash) as "Transfers Count",
SUM("Transfers Count") over (order by "Date") as "Total Transfers Count"
from aptos.core.fact_transfers
where token_address='0x73eb84966be67e4697fc5ae75173ca6c35089e802650f75422ab49a8729704ec::coin::DooDoo'
and success='TRUE'
group by 1
order by 1