SELECT
block_timestamp::date as date,
count(DISTINCT tx_hash) as tx_count,
sum(tx_count) over (order by date asc) as cum_growth_tx_count,
sum(raw_amount/1e18) as tvl,
sum(tvl) over (order by date asc) as cum_growth_tvl
from ethereum.core.fact_token_transfers
where contract_address = lower('0xf1B99e3E573A1a9C5E6B2Ce818b617F0E664E86B')
GROUP by 1
order by 1