Updated 2023-09-08
    -- forked from Ario / friend tech stats 1 @ https://flipsidecrypto.xyz/Ario/q/c2YZrMSjXr05/friend-tech-stats-1

    with eth_tvl as (
    select
    a.day,
    a.from_address,
    sum(mint) as mint,
    sum(redemption) as redemption,
    sum(coalesce(mint, 0) + coalesce(redemption, 0)) as amount
    from
    (
    select
    date_trunc('day', BLOCK_TIMESTAMP) as day,
    from_address,
    sum(ETH_VALUE) as mint
    from
    base.core.fact_traces b
    where
    (
    LOWER(TYPE) NOT IN ('delegatecall', 'callcode', 'staticcall')
    or TYPE is null
    )
    AND TX_STATUS = 'SUCCESS'
    AND TO_ADDRESS = '0xcf205808ed36593aa40a44f10c7f7c2f67d4a4d4'
    group by
    1,2
    ) a
    left join (
    select
    date_trunc('day', BLOCK_TIMESTAMP) as day,
    from_address,
    sum(ETH_VALUE * -1) as redemption
    from
    base.core.fact_traces
    where
    (
    Run a query to Download Data