lidofor Daily comparison of amounts
    Updated 2025-02-20
    SELECT
    CONVERT_TIMEZONE('UTC',time) as time, amount, eth_balance
    FROM (
    SELECT
    value[0]::date AS time,
    value[1]::real AS amount,
    value[2]::real AS eth_balance
    FROM (
    SELECT
    livequery.live.udf_api('https://flipsidecrypto.xyz/api/queries/bfb8b722-842d-40ef-8643-852ce84cc365/latest-run') as response
    ), lateral FLATTEN (input => response:data:result:rows)
    WHERE time >= '2025-02-05') -- change date here



    Last run: about 2 months ago
    TIME
    AMOUNT
    ETH_BALANCE
    1
    2025-02-05 00:00:00.000-11522.50163109211876.283253642
    2
    2025-02-06 00:00:00.000-1242.20461646210634.078637181
    3
    2025-02-07 00:00:00.000-4736.9733471355897.105290045
    4
    2025-02-08 00:00:00.000-1948.7882264393948.317063606
    5
    2025-02-09 00:00:00.00012100.05121803616048.368281642
    6
    2025-02-10 00:00:00.000-13039.1707732523009.19750839
    7
    2025-02-11 00:00:00.0005056.0285593858065.226067775
    8
    2025-02-12 00:00:00.000-4257.5408968343807.685170941
    9
    2025-02-13 00:00:00.0005217.653339659025.338510591
    10
    2025-02-14 00:00:00.0005527.30719543214552.645706023
    11
    2025-02-15 00:00:00.000-771.14689710713781.498808916
    12
    2025-02-16 00:00:00.000-4656.800390389124.698418537
    13
    2025-02-17 00:00:00.000-4050.4891183485074.209300189
    14
    2025-02-18 00:00:00.0008528.81909675913603.028396948
    15
    2025-02-19 00:00:00.000-9988.5369775663614.491419382
    16
    2025-02-20 00:00:00.000558.7931813364173.284600717
    16
    943B
    1s