forgashUST Peg on Ethereum, from Swaps copy
    Updated 2023-04-13
    -- forked from UST Peg on Ethereum, from Swaps @ https://flipsidecrypto.xyz/edit/queries/30d89f57-0e26-4286-9269-bb707137878a

    with ust_in as (
    select
    block_number,
    convert_timezone('UTC', 'America/Denver', block_timestamp) as block_timestamp,
    tx_hash,
    amount_out_usd / amount_in as ust_price
    from ethereum.core.ez_dex_swaps
    where token_in = '0xa693b19d2931d498c5b318df961919bb4aee87a5'
    and block_timestamp ilike '2022-05%'
    ),

    ust_out as (

    select
    block_number,
    convert_timezone('UTC', 'America/Denver', block_timestamp) as block_timestamp,
    tx_hash,
    amount_in_usd / amount_out as ust_price
    from ethereum.core.ez_dex_swaps
    where token_out = '0xa693b19d2931d498c5b318df961919bb4aee87a5'
    and block_timestamp ilike '2022-05%'
    ),

    combo as (

    select * from ust_in
    union
    select * from ust_out
    )

    Run a query to Download Data