synthquestSNX & SDS Price
    Updated 2025-02-15
    -- with SDS_price_feed as (
    -- select
    -- block_number,
    -- block_timestamp,
    -- tx_hash,
    -- origin_from_address,
    -- origin_to_address,
    -- contract_address,
    -- event_name,
    -- decoded_log:current as raw_value,
    -- decoded_log:roundId as round_id,
    -- decoded_log:updatedAt::timestamp as updated_at,
    -- coalesce(lead(decoded_log:updatedAt::timestamp) over (order by block_number),
    -- current_timestamp())
    -- as updated_at_end,
    -- raw_value / pow(10,27) as price, 'SDS' as token,
    -- date_trunc('hour', block_timestamp) as hour_timestamp
    -- from ethereum.core.ez_decoded_event_logs
    -- where contract_address = '0xc7bb32a4951600fbac701589c73e219b26ca2dfc'
    -- and topics[0] = '0x0559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f'
    -- order by block_timestamp desc
    -- ),

    with SDS_price_feed as (
    SELECT block_number, block_timestamp, tx_hash, decoded_log:current *1e-27 AS price
    , 'SDS' as token
    , date_trunc('hour', block_timestamp) as hour_timestamp
    FROM ethereum.core.ez_decoded_event_logs
    WHERE contract_address = '0xc7bb32a4951600fbac701589c73e219b26ca2dfc'
    AND event_name = 'AnswerUpdated'
    ORDER BY block_timestamp DESC

    ),

    -- SNX Price
    -- forked from fc654414-c36e-4b14-992d-b7c42189d4d8
    Last run: about 2 months agoAuto-refreshes every 12 hours
    SERIES_DATE
    SNX
    SDS
    1
    2025-01-16 05:00:00.000
    2
    2025-01-16 06:00:00.000
    3
    2025-01-16 07:00:00.000
    4
    2025-01-16 08:00:00.000
    5
    2025-01-16 09:00:00.000
    6
    2025-01-16 10:00:00.000
    7
    2025-01-16 11:00:00.000
    8
    2025-01-16 12:00:00.000
    9
    2025-01-16 13:00:00.000
    10
    2025-01-16 14:00:00.000
    11
    2025-01-16 15:00:00.000
    12
    2025-01-16 16:00:00.000
    13
    2025-01-16 17:00:00.000
    14
    2025-01-16 18:00:00.000
    15
    2025-01-16 19:00:00.000
    16
    2025-01-16 20:00:00.000
    17
    2025-01-16 21:00:00.000
    18
    2025-01-16 22:00:00.000
    19
    2025-01-16 23:00:00.000
    20
    2025-01-17 00:00:00.000
    ...
    720
    27KB
    547s