Sbhn_NPsimilar-apricot
    Updated 2024-11-14
    with price as (
    select token_address,
    hour::date as datee,
    avg(price) as usdprice
    from ethereum.price.ez_prices_hourly
    group by 1,2
    )

    select date_trunc('day',block_timestamp) as date,
    sum(decoded_log:depositAmount/pow(10,18)) as eth,
    sum((decoded_log:depositAmount/pow(10,18))*usdprice) as usd,
    sum(usd) over (order by date) as TVL
    from ethereum.core.ez_decoded_event_logs
    join price on block_timestamp::date=datee and decoded_log:depositAsset=token_address
    where contract_address = '0x6ae187eacf40ebd1e571a655db92a1f47452e0bf' --contract
    and origin_to_address = '0xfbe0c54d696fa6c93f35d4ca7d656561816c15f6'
    and event_name = 'Deposit'
    group by 1
    order by 1 desc
    Last run: 15 days ago
    DATE
    ETH
    USD
    TVL
    1
    2025-05-16 00:00:00.0000.05630839835145.44428793325061482.6500999
    2
    2025-05-15 00:00:00.0000.036493.33049483325061337.205812
    3
    2025-05-14 00:00:00.0000.04105.21213333325061243.8753171
    4
    2025-05-12 00:00:00.0001.1183488432980.34162106825061138.6631838
    5
    2025-05-11 00:00:00.0000.46580384721192.68130915325058158.3215627
    6
    2025-05-10 00:00:00.0000.040597.384882525056965.6402536
    7
    2025-05-08 00:00:00.0000.0356523464569.86120367725056868.2553711
    8
    2025-05-07 00:00:00.0001.353008042464.70484136725056798.3941674
    9
    2025-05-06 00:00:00.0001.9048227043422.42367802525054333.689326
    10
    2025-05-05 00:00:00.0000.59943497741086.09306269825050911.265648
    11
    2025-05-04 00:00:00.0000.1403336445257.27162384225049825.1725853
    12
    2025-05-03 00:00:00.0000.408210745766.38666536525049567.9009615
    13
    2025-05-01 00:00:00.0000.1404594792256.80031015925048801.5142961
    14
    2025-04-30 00:00:00.0000.336602.0268825048544.7139859
    15
    2025-04-29 00:00:00.00012.5622781.81993333325047942.6871059
    16
    2025-04-28 00:00:00.0000.08289293134153.0269568425025160.8671726
    17
    2025-04-27 00:00:00.0000.2928432417529.71220189625025007.8402158
    18
    2025-04-26 00:00:00.0000.83348135681500.80091223425024478.1280139
    19
    2025-04-25 00:00:00.0000.3997366699720.44716946925022977.3271016
    20
    2025-04-24 00:00:00.0000.2979157813526.76549880325022256.8799322
    ...
    195
    14KB
    16s