mu-tafaUntitled Query
    Updated 2022-08-30
    SELECT
    min(price) as price,
    tokenid as nft_id,
    block_timestamp
    from ethereum.core.ez_nft_sales
    where nft_address=lower('0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB')
    and price is not null
    and price>0
    group by 2,3
    order by 1 asc limit 10
    Run a query to Download Data