dannerUntitled Query
    Updated 2022-09-02
    select
    nft_address ,
    sum(price_usd)
    from
    ethereum.core.ez_nft_sales
    where block_timestamp::date > '2020-12-31'
    and price_usd is not null
    group by 1 order by sum(price_usd) desc limit 10
    Run a query to Download Data