AzinEVM 8-1
    Updated 2023-01-14
    select
    sum(PRICE_USD) as volume ,
    NFT_ADDRESS
    from
    optimism.core.ez_nft_sales
    where
    BLOCK_TIMESTAMP>CURRENT_DATE-21 and PRICE_USD is not null and NFT_ADDRESS is not null
    group by 2
    order by 1 desc
    limit 10
    Run a query to Download Data