sarathhighest sales volume
    Updated 2022-06-11
    SELECT date(block_timestamp) as date,origin_to_address,sum(price_usd) as volume from ethereum_core.ez_nft_sales where date=CURRENT_DATE-60
    GROUP by 1,2
    order by volume desc
    LIMIT 3
    Run a query to Download Data