0xHaM-dTotal Value Locked (Opyn Bounty)
    Updated 2022-06-29
    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
    Run a query to Download Data