Afonso_Diaz2023-04-16 10:39 PM
    Updated 2023-04-16
    with t as (
    select
    recorded_hour::date as date,
    currency,
    symbol,
    avg(price) as price_usd
    from osmosis.core.ez_prices
    group by 1, 2, 3
    ),

    t2 as (
    select
    block_timestamp,
    symbol,
    tx_id,
    fee,
    trader as user,
    (from_amount / pow(10, from_decimal)) * price_usd as amount_usd
    from osmosis.core.fact_swaps a
    join osmosis.core.fact_transactions
    using(tx_id)
    join t on date = block_timestamp::date and t.currency = a.from_currency
    where block_timestamp >= '2022-01-01' and block_timestamp < '2023-04-01'
    and tx_succeeded = 1
    ),

    t3 as (
    select
    block_timestamp,
    t2.symbol,
    case
    when block_timestamp < '2022-04-01' then '1. Winter, 2022'
    when block_timestamp < '2022-07-01' then '2. Spring, 2022'
    when block_timestamp < '2022-10-01' then '3. Summer, 2022'
    when block_timestamp < '2023-01-01' then '4. Autumn, 2022'
    else '5. Winter, 2023'
    Run a query to Download Data