mooolmUntitled Query
    Updated 2023-05-23
    select tokenid as token,
    count (distinct tx_hash) as total_sales
    from ethereum.core.ez_nft_sales
    where NFT_ADDRESS=lower('0x231d3559aa848Bf10366fB9868590F01d34bF240')
    and price_usd > 0
    group by token
    order by total_sales desc
    limit 10
    Run a query to Download Data