-- In this query we are pulling the latest prices for all Terra Stablecoins, LUNA, MIR, and ANC
-- The luna_exchange_rate column represents the price of the token comparative to LUNA (6.5 UST = 1 LUNA)
SELECT
block_timestamp,
symbol,
luna_exchange_rate,
price_usd
FROM terra.oracle_prices
ORDER BY 1 DESC
LIMIT 100