saber-jltoken price on flow blockchain overtime
    Updated 2022-11-19
    SELECT
    distinct token,
    avg(price_usd) as price,
    date_trunc('day',timestamp) as date
    from flow.core.fact_prices
    group by 1,3
    order by 2 desc
    Run a query to Download Data