MadiUntitled Query
    Updated 2023-01-03
    with df as (
    select RECORDED_AT as block_timestamp, TOTAL_SUPPLY
    from osmosis.core.dim_prices
    where symbol = 'OSMO' )

    select date_trunc('day', block_timestamp) as date, round(avg(TOTAL_SUPPLY),2) as circsuppl
    from df group by 1


    Run a query to Download Data