Sbhn_NPoptimism 10
    Updated 2022-10-27
    select
    project_name as project,
    sum (price_usd) as Total_Volume
    from optimism.core.ez_nft_sales a inner join optimism.core.dim_labels b on a.nft_address=b.address
    where platform_address in ('0x3f9da045b0f77d707ea4061110339c4ea8ecfa70','0x829b1c7b9d024a3915215b8abf5244a4bfc28db4',
    '0x20975da6eb930d592b9d78f451a9156db5e4c77b','0x065e8a87b8f11aed6facf9447abe5e8c5d7502b6','0xe5c7b4865d7f2b08faadf3f6d392e6d6fa7b903c')
    group by 1
    order by 2 desc
    limit 5
    Run a query to Download Data