amasuccirETH/ETH TVL
    Updated 2023-11-16
    select
    block_timestamp::DATE,
    avg(token0_balance_usd + token1_balance_usd) as tvl
    from ethereum.uniswapv3.ez_pool_stats
    where pool_address = '0xa4e0faa58465a2d369aa21b3e42d43374c6f9613'
    and block_timestamp::DATE >= '2022-02-06'
    group by 1
    Run a query to Download Data