2844luna weekly price
    Updated 2022-04-26
    SELECT
    date_trunc('week', block_timestamp) as date,
    avg(price_usd) as avg_price_usd
    FROM terra.oracle_prices
    WHERE currency = 'uluna' and currency IS NOT NULL and date >= '2021-02-08'
    group by date
    ORDER BY 1 DESC
    Run a query to Download Data