amirkhannoriiLUNA Price
    Updated 2022-07-06
    SELECT DATE_trunc('day',block_timestamp) as DAY,
    Avg(event_amount_usd/event_amount) As Price
    FROM terra.transfers
    where block_timestamp::date >= '2021-01-01'
    and event_currency= 'LUNA'
    group by 1
    Run a query to Download Data