adambalaApetimism 11
    Updated 2022-09-02
    select seller_address ,
    sum (price_usd) as USD_Value
    FROM optimism.core.ez_nft_sales
    where platform_name = 'quixotic' and EVENT_TYPE = 'sale' and CURRENCY_SYMBOL = 'ETH' and NFT_ADDRESS='0x51e5426ede4e2d4c2586371372313b5782387222'
    and price_usd>0
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data