winnie-fsNFT platform sales copy
    Updated 2024-06-21
    -- forked from NFT platform sales @ https://flipsidecrypto.xyz/edit/queries/6a229864-1dad-467d-9971-f815bdad5c95

    select
    platform_name,
    count(*) as sales_count,
    SUM(DISTINCT(price_usd)) as sales_volume
    from
    ethereum.nft.ez_nft_sales
    where block_timestamp > current_date - interval '30 days'
    group by platform_name
    order by sales_volume desc
    limit {{numRows}} {{dfg}}
    QueryRunArchived: QueryRun has been archived