select
price as "Price ETH",
price_usd as "Price USD",
b.ADDRESS_NAME as "Collection",
tokenid as "Token ID",
block_timestamp::date as "Sale Date"
from
optimism.core.ez_nft_sales a join optimism.core.dim_labels b on a.nft_address=b.address
where
currency_symbol = 'ETH'
order by
price desc
limit 10