messariOsmosis - DAU - 4. IBC In copy
    Updated 2023-10-16
    -- forked from pinehearst / Osmosis - DAU - 4. IBC In @ https://flipsidecrypto.xyz/pinehearst/q/HAmtcmwyJKn4/osmosis-dau-4-ibc-in

    with swaps AS (
    SELECT
    block_id,
    block_timestamp,
    trader,
    tx_id,
    from_amount/pow(10, from_decimal) as from_amount1,
    from_currency,
    a.project_name as from_symbol,
    to_amount/pow(10, to_decimal) as to_amount1,
    to_currency,
    nvl(b.project_name, to_currency) as to_symbol,
    a.label as token_sold,
    b.label as token_bought,
    pool_ids
    FROM osmosis.core.fact_swaps
    LEFT JOIN osmosis.core.dim_labels a ON from_currency = a.address
    LEFT JOIN osmosis.core.dim_labels b ON to_currency = b.address
    WHERE tx_succeeded = TRUE -- AND from_currency = 'uosmo'
    AND from_symbol IN ('USDC.axl', 'DAI.axl')
    ),
    osmosis_swap_oracle AS ( -- swap and oracle price
    SELECT
    date(block_timestamp) as date,
    to_currency,
    sum(from_amount1)/sum(to_amount1) as usd -- estimate price from swaps
    -- count(distinct tx_id) as buy_count,
    -- sum(from_amount1) as buy_usd_volume
    From swaps
    WHERE to_symbol IS NOT NULL
    GROUP BY 1,2
    UNION
    SELECT
    date(recorded_at) as date,
    Run a query to Download Data