Elprognerd4 - Total number of sales of UniSwap NFT Aggregator per Marketplaces
    Updated 2022-12-21
    SELECT
    PLATFORM_NAME AS "Marketplace",
    COUNT(DISTINCT TX_HASH) AS "Total number of sales",
    sum(PRICE_USD) AS "Total volume of NFT sales in USD"
    FROM ethereum.core.ez_nft_sales
    WHERE origin_to_address = '0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b'
    GROUP BY 1
    Run a query to Download Data