mmdrezaVolume of Swaps on Osmosis
    Updated 2022-11-15
    with pricet as (
    select recorded_at::date as day,
    symbol as symbol1,
    avg (price) as USDPrice
    from osmosis.core.dim_prices
    group by 1,2

    union ALL

    select hour::date as day,
    case when symbol = 'USDC' then 'USDC.axl'
    when symbol = 'USDT' then 'USDT.axl'
    when symbol = 'aTUSD' then 'USDC.grv'
    when symbol = 'sUSD' then 'USDT.grv'
    when symbol = 'iUSD' then 'USDX'
    when symbol = 'WETH' then 'WETH.axl'
    when symbol = 'aWETH' then 'WETH.grv'
    when symbol = 'WBTC' then 'WBTC.axl'
    when symbol = 'uWBTC' then 'WBTC.grv'
    when symbol = 'DAI' then 'DAI.axl'
    when symbol = 'aDAI' then 'DAI.grv'
    when symbol = 'FRAX' then 'FRAX.axl'
    else symbol end as symbol1,
    avg (price) as USDPrice
    from ethereum.core.fact_hourly_token_prices
    group by 1,2)


    select
    block_timestamp::date as date,
    case
    when date < '2022-11-08' then 'before ftx and alemmeda failure'
    when date >= '2022-11-08' then 'during ftx & Alameda failure'
    end as time,
    count (distinct tx_id) as Swaps_Count,
    count (distinct trader) as Swappers_Count,
    Run a query to Download Data